-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 966 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
{
"name": "project_02_nwc",
"version": "1.0.0",
"description": "a recipe crud app",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llouison/Project_02_NWC.git"
},
"author": "Lisa Louison",
"license": "ISC",
"bugs": {
"url": "https://github.com/llouison/Project_02_NWC/issues"
},
"homepage": "https://github.com/llouison/Project_02_NWC#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"express-session": "^1.15.2",
"isomorphic-fetch": "^2.2.1",
"method-override": "^2.3.8",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg-promise": "^5.6.7"
}
}