-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1005 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
38
39
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run gcp-build",
"start": "node dist/index.js",
"gcp-build": "npx tsc -p .",
"build": "npx tsc",
"dev": "nodemon --ext ts --exec ts-node index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.24.0",
"bcrypt": "^5.0.1",
"dotenv": "^9.0.0",
"express-jwt": "^6.0.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.7",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"class-validator": "^0.13.1"
},
"devDependencies": {
"nodemon": "^2.0.7",
"@types/mongoose": "^5.10.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"@types/express-jwt": "^6.0.1",
"@types/bcrypt": "^3.0.1",
"@types/jsonwebtoken": "^8.5.1"
}
}