-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "ecg-map",
"version": "1.0.0",
"description": "Interactive map of the East Coast Greenway",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "foreman run nodemon server.js",
"install:client": "cd client && yarn && npm run build && cd ..",
"heroku-postbuild": "npm run install:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EastCoastGreenwayAlliance/ecg-map.git"
},
"author": "@clhenrick <chrishenrick@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EastCoastGreenwayAlliance/ecg-map/issues"
},
"homepage": "https://github.com/EastCoastGreenwayAlliance/ecg-map#readme",
"engines": {
"node": "6.11.1"
},
"dependencies": {
"body-parser": "^1.17.2",
"cartodb": "^0.5.1",
"express": "^4.15.3",
"express-sslify": "^1.2.0",
"jsts": "^1.4.0",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"superagent": "^3.5.2",
"worker-farm": "^1.5.0"
}
}