-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 933 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": "node-demo",
"version": "1.0.0",
"description": "Node.js Demo",
"repository": "https://github.com/rogerxu/node-demo.git",
"license": "MIT",
"author": "Roger Xu <roger.xu.2007@gmail.com>",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.21",
"socket.io": "^4.2.0",
"ws": "^8.2.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/preset-env": "^7.15.6",
"cheerio": "^1.0.0-rc.10",
"eslint": "^7.32.0",
"jest": "^27.2.1",
"nock": "^13.1.3",
"prettier": "2.4.1",
"prettier-plugin-packagejson": "^2.2.12",
"rewire": "^5.0.0",
"supertest": "^6.1.6"
},
"engines": {
"node": ">=14",
"npm": "^6"
}
}