-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "GT-Pro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --require test/setup.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"migrate:test": "env NODE_ENV=test npm run migrate",
"migrate:production": "env SSL=true DATABASE_URL=$(heroku config:get DATABASE_URL) npm run migrate",
"start": "node src/server.js",
"predeploy": "npm run migrate:production",
"deploy": "git push heroku master"
},
"keywords": [],
"engines": {
"node": "Version 12.7.0"
},
"author": "Fernando Gaol Filho",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.13",
"morgan": "^1.9.1",
"now": "^18.0.0",
"pg": "^7.18.2",
"postgrator-cli": "^3.3.0",
"treeize": "^2.1.2",
"winston": "^3.2.1",
"xss": "^1.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}