-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 846 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 846 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
{
"name": "testing-project-week",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node ./bin/www.js",
"db:deploy": "node ./db/scripts/users/createTable.js && node ./db/scripts/users/populateTable.js",
"db:createusers": "node -r dotenv/config ./db/scripts/users/createTable.js",
"db:populateusers": "node -r dotenv/config ./db/scripts/users/populateTable.js",
"dev": "nodemon -r dotenv/config ./bin/www.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"morgan": "~1.9.1",
"pg": "^8.7.3"
},
"devDependencies": {
"dotenv": "^10.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.19",
"supertest": "^6.2.4"
}
}