-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1015 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1015 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
35
36
37
38
39
40
41
42
{
"name": "even-teams",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require test/setup.js",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"migrate-production": "postgrator --config postgrator-production-config.js",
"predeploy": "npm run migrate-production",
"deploy": "git push heroku master"
},
"keywords": [],
"engines": {
"node": "11.14.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.20.1",
"heroku": "^7.29.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"morgan": "^1.9.1",
"path": "^0.12.7",
"pg": "^7.12.1",
"uuid": "^3.3.3",
"xss": "^1.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0",
"postgrator-cli": "^3.1.0",
"supertest": "^4.0.2"
}
}