-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 886 Bytes
/
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
{
"name": "be-node-postgres",
"version": "1.0.0",
"description": "We're making an api to keep track of all the tasty treats that the northcoders eat throughout the day. Some setup has been done to write a seed script to populate the database and your task is to create the first end point.",
"main": "app.js",
"scripts": {
"test": "jest",
"dev": "node app.js",
"start": "node listen.js",
"setup-dbs": "psql -f ./db/seeds/setup.sql",
"seed:prod": "NODE_ENV=production DATABASE_URL=$(heroku config:get DATABASE_URL) npm run seed",
"seed": "node ./db/seeds/run-seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"supertest": "^6.3.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.1",
"pg": "^8.8.0",
"pg-format": "^1.0.4"
}
}