-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"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",
"seed-test": "NODE_ENV=test node ./db/seeds/run-seed.js",
"seed:prod": "NODE_ENV=production DATABASE_URL=$(heroku config:get DATABASE_URL) npm run seed",
"start": "node listen.js"
},
"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",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"supertest": "^6.1.6"
},
"devDependencies": {
"jest": "^27.4.0",
"jest-sorted": "^1.0.12"
},
"jest": {
"setupFilesAfterEnv": [
"jest-sorted"
]
}
}