forked from GregoireMorane/SlackMeHarder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 KB
/
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": "wild-chat",
"version": "1.19.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest ./tests && cd web-app && npm test",
"start": "nodemon index.js",
"migration:create": "npx db-migrate create",
"migration:run": "npx db-migrate up --config db-migrate-config.js --env pg",
"build": "npm install && npm run migration:run && cd web-app && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^24.9.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-pg-simple": "^6.0.1",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"db-migrate": "^0.11.11",
"db-migrate-pg": "^1.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"pg": "^7.12.1",
"pg-connection-string": "^2.1.0",
"pg-promise": "^9.3.3",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"supertest": "^4.0.2"
}
}