-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 KB
/
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
34
35
36
37
38
{
"name": "todo-app-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --transpile-only --no-notify --exit-child dev.ts",
"generate": "ts-node --transpile-only api/schema.ts",
"build": "prisma generate && npm run generate && tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^8.5.9",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"bcryptjs": "^2.4.3",
"bson": "^4.7.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-session": "^1.17.3",
"graphql": "^15.8.0",
"graphql-scalars": "^1.18.0",
"jsonwebtoken": "^8.5.1",
"nexus": "^1.1.0"
}
}