-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "clean-city",
"version": "1.0.0",
"description": "Web Project For MAIT-Interns",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "env-cmd ./conf/dev.env nodemon src/server.js",
"start": "node server.js"
},
"engines": {
"node": "10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevelopHowTo/Clean-City.git"
},
"author": "Develophowto",
"license": "ISC",
"bugs": {
"url": "https://github.com/DevelopHowTo/Clean-City/issues"
},
"homepage": "https://github.com/DevelopHowTo/Clean-City#readme",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-session": "^1.16.1",
"mongodb": "^3.2.3",
"mongoose": "^5.5.1",
"multer": "^1.4.1",
"node-fetch": "^2.6.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"sharp": "^0.22.0",
"socket.io": "^2.2.0"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"nodemon": "^1.18.11"
}
}