-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "be-nc-news",
"version": "1.0.0",
"description": "bc-nc-news",
"main": "index.js",
"scripts": {
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "knex seed:run",
"test-utils": "mocha spec/utils.spec.js",
"test": "mocha spec/app.spec.js",
"migrate-make": "knex migrate:make",
"migrate-latest": "knex migrate:latest",
"migrate-rollback": "knex migrate:rollback",
"seed:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex seed:run",
"migrate-latest:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex migrate:latest",
"migrate-rollback:prod": "NODE_ENV=production DB_URL=$(heroku config:get DATABASE_URL) knex migrate:rollback",
"start": "node listen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northcoders/be-nc-news.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/northcoders/be-nc-news/issues"
},
"homepage": "https://github.com/northcoders/be-nc-news#readme",
"dependencies": {
"chai": "^4.2.0",
"chai-sorted": "^0.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"knex": "^0.17.6",
"lodash": "^4.17.14",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"pg": "^7.11.0"
},
"devDependencies": {
"supertest": "^4.0.2"
}
}