-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 KB
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "example-server",
"private": true,
"version": "0.0.0",
"scripts": {
"prestart": "npm run build",
"start": "nodemon dist/index.js",
"prebuild": "npm run clear",
"build": "tsc",
"clear": "rimraf ./dist"
},
"dependencies": {
"apollo-server-core": "^3.6.7",
"apollo-server-express": "^3.6.7",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^17.2.2",
"express": "^4.17.3",
"express-jwt": "^7.4.3",
"fs": "0.0.1-security",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongodb": "^6.19.0",
"mongoose": "^7.8.7",
"node": "^17.7.2",
"nodemon": "^2.0.4",
"socket.io": "^4.5.0",
"tslint": "^6.1.3",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.3.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/cors": "^2.8.6",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.6",
"@types/express-jwt": "^6.0.4",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.26",
"@types/node": "^13.13.12",
"@types/socket.io": "^3.0.2",
"auto-load": "^3.0.4",
"rimraf": "^3.0.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}