-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 834 Bytes
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
{
"name": "admin-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 5000 --exit --reporter spec test/**/*.js",
"start": "HTTP_PORT=4000 SOCKET_PORT=4001 node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.14",
"mongoose-unique-validator": "^2.0.3",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"faker": "^4.1.0",
"mocha": "^7.1.2",
"sinon": "^9.0.2"
}
}