-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.56 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
79
80
81
{
"name": "accessmap-webapp",
"version": "1.0.0",
"private": true,
"description": "AccessMap Web App",
"main": "index.js",
"repository": "github.com/accessmap/accessmap-webapp",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server",
"profile": "cross-env NODE_ENV=production webpack --env.prod=true --env.profile=true",
"prod": "cross-env NODE_ENV=production webpack --env.prod=true",
"build": "cross-env NODE_ENV=production webpack --env.prod=true",
"lint": "eslint ./client ./webpack.config.js -f table || true",
"linttest": "eslint ./client ./webpack.config.js -f table",
"deploy": "cross-env NODE_ENV=production webpack --env.prod=true && gh-pages -d public"
},
"pre-commit": "linttest",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.23.0",
"brfs": "^1.4.3",
"cross-env": "3.1.4",
"css-loader": "0.14.5",
"eslint": "3.18",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"file-loader": "^0.11.1",
"redbox-react": "^1.5.0",
"style-loader": "0.13.2",
"webpack": "2.2.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-server": "2.4.1"
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"chroma-js": "^1.3.3",
"dotenv-webpack": "^1.5.5",
"gh-pages": "^1.1.0",
"i18next-client": "^1.11.4",
"immutable": "^3.8.1",
"lodash.throttle": "^4.1.1",
"machine_learning": "^0.1.1",
"mapbox": "^1.0.0-beta7",
"mapbox-gl": "0.42.2",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.0",
"rakam-js": "^1.0.3",
"react": "^16.2.0",
"react-dimensions": "^1.3.1",
"react-dom": "^16.2.0",
"react-mapbox-gl": "^3.5.1",
"react-md": "^1.2.11",
"react-redux": "^5.0.6",
"react-transition-group": "^2.2.1",
"redux": "3.6.0",
"redux-analytics": "^0.3.1",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.5",
"svg-sprite-loader": "^3.7.3",
"transform-loader": "^0.2.4",
"url-loader": "^0.6.2"
}
}