-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 958 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 958 Bytes
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
{
"scripts": {
"codegen": "graphql-codegen --config codegen.ts",
"start": "npm run codegen && nodemon",
"lint": "eslint --ignore-path .eslintignore .",
"build": "node -r tsconfig-paths/register build/index.js"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"argon2": "^0.40.1",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-mongodb": "3.0.0",
"@graphql-codegen/typescript-resolvers": "4.0.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.4"
}
}