-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
71
72
73
74
75
76
77
78
{
"name": "pilotplan",
"version": "0.0.1",
"description": "instituteRice",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npm run start-dev-server",
"start-dev-server": "node_modules/.bin/webpack-dev-server --hot --inline",
"remove-css": "rm -f -- dist/styles.css",
"build": "node_modules/.bin/webpack -p --config webpack.config.prod.js && node bin/rasterBounds",
"build-simple": "node_modules/.bin/webpack -p --config webpack.config.prod.js",
"deploy": "./bin/deploy.sh",
"document": "node_modules/.bin/documentation build ./src/js/index.js -f md -o README.md",
"dev-document": "documentation serve --watch ./src/js/index.js",
"geojson": "./bin/geojson.sh",
"test": "node_modules/.bin/jest",
"raster": "python bin/prep_rasters.py",
"static": "node bin/static.js && node bin/extents.js",
"style": "node bin/styles.js",
"tiles": "node bin/views.js && ./bin/tiles.sh",
"views": "node bin/views.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@mapbox/mapbox-sdk": "^0.4.0",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/length": "^6.0.2",
"@turf/union": "^6.0.3",
"aws-sdk": "^2.814.0",
"d3": "^5.5.0",
"d3-dispatch": "1.0.3",
"d3-selection-multi": "^1.0.1",
"hammerjs": "2.0.8",
"jquery": "^3.2.1",
"leaflet": "^1.1.0",
"leaflet-draw": "^1.0.2",
"mapbox-gl": "^1.9.1",
"underscore": "^1.12.1",
"whatwg-fetch": "^3.0.0"
},
"engines": {
"node": "8.17.0"
},
"false": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"documentation": "^8.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"mapshaper": "^0.5.80",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.11.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14"
}
}