-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (38 loc) · 945 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
{
"name": "server",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/index.js",
"server": "nodemon dist/index.js",
"watch": "tsc -w"
},
"dependencies": {
"apollo-server-core": "^3.6.2",
"apollo-server-express": "^3.6.2",
"argon2": "^0.28.3",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"graphql": "^15.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.13",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
}
}