forked from fac21/week7-jess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 940 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
{
"name": "week7-jess",
"version": "1.0.0",
"description": "week 7- server-side-app",
"main": "server.js",
"scripts": {
"test": "cypress open",
"start": "node server.js",
"dev": "nodemon server.js",
"db:setup": "./scripts/db:setup",
"db:build": "./scripts/db:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac21/week7-jess.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac21/week7-jess/issues"
},
"homepage": "https://github.com/fac21/week7-jess#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.5.1",
"express": "^4.17.1",
"multer": "^1.4.2",
"nodemon": "^2.0.7",
"pg": "^8.6.0"
},
"devDependencies": {
"cypress": "^7.2.0"
}
}