-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "free-bathroom-app",
"version": "1.0.0",
"description": "app to help people find free bathrooms in theirarea",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"debugger": "DEBUG=*:* npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adanna21/free-bathroom-app.git"
},
"author": "Adanna O",
"license": "ISC",
"bugs": {
"url": "https://github.com/adanna21/free-bathroom-app/issues"
},
"homepage": "https://github.com/adanna21/free-bathroom-app#readme",
"dependencies": {
"axios": "^0.17.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"getmac": "^1.2.1",
"isomorphic-fetch": "^2.2.1",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^7.1.0"
},
"devDependencies": {
"nodemon": "^1.12.1"
},
"engines": {
"node": "8.6.0"
}
}