-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
45
46
47
48
49
{
"name": "be-nc-news",
"version": "1.0.0",
"description": "bc-nc-news",
"main": "listen.js",
"scripts": {
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "node ./db/seeds/run-seed.js",
"test": "jest",
"prepare": "husky install",
"start": "node listen.js",
"seed-prod": "NODE_ENV=production npm run seed",
"scrap": "psql -f scrap.sql > scrap.txt"
},
"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": {
"husky": "^7.0.0",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"jest-sorted": "^1.0.14",
"l": "^0.6.0"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"pg": "^8.7.3",
"pg-format": "^1.0.4",
"supertest": "^6.3.3"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended/all",
"jest-sorted",
"./testSetup.js"
]
}
}