-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 840 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
34
35
36
37
38
{
"name": "be-nc-news",
"version": "1.0.0",
"description": "bc-nc-news",
"main": "index.js",
"scripts": {
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "node ./db/seeds/run-seed.js",
"test": "jest",
"prepare": "husky install"
},
"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",
"devDependencies": {
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"pg-format": "^1.0.4",
"husky": "^7.0.0"
},
"dependencies": {
"dotenv": "^16.0.0",
"pg": "^8.7.3"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all"
]
}
}