forked from Rosem10/nc_snacks_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 833 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 833 Bytes
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
{
"name": "nc_snacks",
"version": "1.0.0",
"description": "",
"main": "listen.js",
"scripts": {
"test": "jest",
"start": "nodemon",
"setup-dbs": "psql -f db/setup.sql",
"seed": "node db/run-seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northcoders/nc_snacks.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/northcoders/nc_snacks/issues"
},
"homepage": "https://github.com/northcoders/nc_snacks#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.2",
"pg": "^8.11.3",
"pg-format": "^1.0.4"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-sorted": "^1.0.15",
"supertest": "^6.3.4"
},
"jest": {
"setupFilesAfterEnv": [
"jest-sorted"
]
}
}