-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 949 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "inforium-backend",
"version": "1.0.0",
"description": "A backend for Inforium note taking application.",
"main": "index.js",
"scripts": {
"start": "node build/src/index.js",
"dev": "ts-node-dev src/index.ts",
"compile": "tsc",
"codegen": "graphql-codegen --config codegen.ts",
"build": "npm run codegen && npm run compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.9.5",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"mongoose": "^7.6.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-resolvers": "4.0.1",
"@types/node": "^20.8.9",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}