-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 970 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
34
35
36
37
{
"name": "server",
"version": "1.0.0",
"description": "typescript project with graphql and mongodb",
"author": "Prahlad",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.10",
"@types/node": "^14.14.21",
"nodemon": "^2.0.7",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"apollo-server-express": "^2.19.2",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"reflect-metadata": "^0.1.10",
"type-graphql": "^1.1.1"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts"
}
}