-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 861 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
29
30
31
32
33
{
"name": "be-nc-games",
"version": "1.0.0",
"description": "bc-nc-games",
"main": "index.js",
"scripts": {
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "node ./db/seeds/run-seed.js",
"test": "jest",
"start": "node listen.js",
"seed:prod": "NODE_ENV=production DATABASE_URL=$(heroku config:get DATABASE_URL) npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northcoders/be-nc-games.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/northcoders/be-nc-games/issues"
},
"homepage": "https://github.com/northcoders/be-nc-games#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.0.6",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"supertest": "^6.1.4"
}
}