-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
39
40
41
{
"name": "trips-unplanned-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --requires text/setup.js",
"dev": "nodemon src/server.js",
"migrate": "postgrator --config postgrator-config.js",
"migrate:production": "set SSL=true DATABASE_URL=${heroku config:get DATABASE_URL} && npm run migrate",
"start": "node src/index.js",
"predeploy": "npm audit && npm run migrate:production",
"deploy": "git push heroku master",
"vercel-build": "set sslmode=require echo hello"
},
"keywords": [],
"engines": {
"node": "18.16.1",
"npm": "9.7.2"
},
"author": "Amber Jiles",
"license": "ISC",
"dependencies": {
"@vercel/postgres": "^0.4.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "4.19.2",
"helmet": "7.0.0",
"knex": "2.4.2",
"morgan": "1.10.0",
"pg": "8.11.1",
"winston": "3.9.0"
},
"devDependencies": {
"chai": "4.3.7",
"mocha": "10.2.0",
"nodemon": "^3.0.0",
"postgrator-cli": "7.0.0",
"supertest": "6.3.3"
}
}