-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"jest": {
"setupFilesAfterEnv": [
"jest-sorted"
]
},
"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",
"dev": "nodemon ./listen.js",
"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",
"devDependencies": {
"jest": "^27.0.4",
"jest-sorted": "^1.0.12",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"express": "^4.17.1",
"pg": "^8.6.0",
"pg-format": "^1.0.4",
"dotenv": "^10.0.0"
}
}