-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
39
40
41
42
43
44
45
46
47
{
"name": "ecannab-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"seed": "psql -U carito -d ecannab -f ./seeds/seed.tables.sql",
"test": "mocha --require test/setup.js",
"watch": "npm t -- --watch",
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"migrate:test": "env NODE_ENV=test npm run migrate",
"migrate:production": "heroku run npm run migrate",
"predeploy": "npm audit",
"deploy": "git push heroku main",
"postdeploy": "npm run migrate:production"
},
"keywords": [],
"engines": {
"node": "15.10.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.12",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"postgrator-cli": "^3.2.0",
"xss": "^1.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"prettier": "2.2.1",
"supertest": "^6.0.1"
}
}