-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "austin-park-equity",
"version": "0.0.1",
"description": "This is a civic app that aims to help visualize how Austin's park resources are distributed throughout the City of Austin.",
"scripts": {
"build:css": "node-sass --include-path node_modules/bourbon/app/assets/stylesheets sass --output dist/css",
"watch:css": "./node_modules/.bin/watch 'npm run build:css' sass",
"build:js": "webpack -p -d --bail --progress",
"watch:js": "webpack --watch -d --devtool cheap-eval-source-map --progress",
"build:html": "node scripts/build_html",
"watch:html": "./node_modules/.bin/watch 'npm run build:html' templates",
"link:data": "ln -sf $(pwd)/data $(pwd)/dist/data",
"link:img": "ln -sf $(pwd)/img $(pwd)/dist/img",
"build": "npm run build:html && npm run build:css && npm run link:data && npm run link:img && npm run build:js",
"watch": "parallelshell 'npm run watch:html' 'npm run watch:css' 'npm run watch:js' 'npm run link:data' 'npm run link:img'",
"serve": "serve --port 8080 dist",
"copy:data": "rm -rf dist/data && cp -r data dist",
"copy:img": "rm -rf dist/img && cp -r img dist",
"deploy": "npm run build && npm run copy:img && npm run copy:data && node scripts/deploy",
"start": "mkdir -p dist && parallelshell 'npm run watch' 'npm run serve'"
},
"repository": {
"type": "git",
"url": "https://github.com/open-austin/austin-park-equity.git"
},
"author": "Open Austin",
"license": "ISC",
"bugs": {
"url": "https://github.com/open-austin/austin-park-equity/issues"
},
"homepage": "https://github.com/open-austin/austin-park-equity",
"devDependencies": {
"JSONStream": "^1.0.4",
"babel-eslint": "^4.1.3",
"bourbon": "^4.2.5",
"eslint": "^1.5.0",
"eslint-config-airbnb": "0.0.8",
"eslint-config-standard": "^4.4.0",
"event-stream": "^3.3.1",
"gulp": "^3.9.0",
"gulp-compass": "^2.1.0",
"gulp-connect": "^2.2.0",
"gulp-file-include": "^0.13.7",
"gulp-gh-pages": "^0.5.2",
"gulp-notify": "^2.2.0",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.6",
"json-loader": "^0.5.3",
"lodash.merge": "^3.3.2",
"minimist": "^1.1.3",
"node-sass": "^3.3.3",
"parallelshell": "^2.0.0",
"query-overpass": "^1.0.0",
"serve": "^1.4.0",
"standard": "^5.3.1",
"turf": "^2.0.2",
"turf-cli": "^1.1.0",
"watch": "^0.16.0",
"webpack": "^1.12.2"
},
"dependencies": {
"d3": "^3.5.6",
"jquery": "^2.1.4",
"leaflet": "^0.7.5",
"leaflet-providers": "^1.1.2",
"lodash": "^3.10.1",
"queue-async": "^1.0.7"
}
}