-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1009 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
37
38
39
40
{
"name": "spatialaddressbook",
"version": "1.0.0",
"private": true,
"description": "your addressbook on a map, with data attached!",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/globalavocado/spatialaddressbook.git"
},
"author": "globalavocado",
"license": "ISC",
"bugs": {
"url": "https://github.com/globalavocado/spatialaddressbook/issues"
},
"homepage": "https://github.com/globalavocado/spatialaddressbook#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"debug": "~2.6.9",
"express": "^4.16.4",
"http-errors": "~1.6.2",
"leaflet": "^1.6.0",
"leaflet-draw": "^1.0.4",
"mongodb": "^3.3.4",
"mongoose": "^5.7.12",
"mongoose-geojson-schema": "^2.1.3",
"morgan": "^1.9.1",
"pug": "^2.0.4",
"validator": "^10.11.0"
},
"devDependencies": {
"nodemon": "^2.0.1"
}
}