-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 908 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": "index.js",
"scripts": {
"test": "node ./src/seed.js && mocha ./src/tests --exit",
"start": "nodemon app.js",
"seed": " node ./src/seed.js",
"migrate": "node ./src/migrate.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-joi-validation": "^5.0.1",
"express-validator": "^7.0.1",
"joi": "^17.7.0",
"nodemon": "^3.0.1",
"path": "^0.12.7",
"pg": "^8.7.3",
"redis": "^4.0.6",
"shelljs": "^0.8.5",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0",
"supertest": "^6.2.4"
}
}