-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
75 lines (75 loc) · 1.92 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
{
"name": "openstates.org",
"version": "0.1.0",
"description": "",
"dependencies": {
"deep-extend": ">=0.5.1",
"file-loader": "^5.1.0",
"foundation-sites": "^6.6.3",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"mapbox-gl": "^1.12.0",
"npm": "^8.19.2",
"prettier": "^1.19.1",
"promise-polyfill": "8.1.0",
"randomcolor": "^0.5.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-mapbox-gl": "^4.8.6",
"recharts": "^2.0.0-beta.7",
"url-search-params-polyfill": "^5.0.0",
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"chokidar": "^3.5.3",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"node-sass": "^7.0.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": "^16"
},
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"prettier": "prettier --write js/* static/styles/*"
},
"browserslist": [
"> 1% in US",
"IE 11"
],
"prettier": {
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "prettier",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
}
}
}