-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 3.13 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "cdc-indicator",
"version": "0.3.0",
"description": "CDC Disease Indicator Tool",
"main": "src/main.jsx",
"engines": {
"node": ">=14 <15"
},
"scripts": {
"build": "better-npm-run build",
"build:staging": "better-npm-run build:staging",
"build:dev": "better-npm-run build:dev",
"start": "better-npm-run start",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node ./deploy.js"
},
"betterScripts": {
"build": {
"command": "webpack",
"env": {
"NODE_ENV": "production",
"CONFIG": "production"
}
},
"build:staging": {
"command": "webpack",
"env": {
"NODE_ENV": "production",
"CONFIG": "staging"
}
},
"build:dev": {
"command": "webpack",
"env": {
"NODE_ENV": "development"
}
},
"start": {
"command": "webpack serve --config ./webpack-dev-server.js --inline --hot",
"env": {
"NODE_ENV": "development"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/socrata/cdc-indicator.git"
},
"author": "Hiko Naito, Socrata",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/socrata/cdc-indicator/issues"
},
"homepage": "https://github.com/socrata/cdc-indicator#readme",
"devDependencies": {
"@webpack-cli/migrate": "^1.1.2",
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"better-npm-run": "^0.1.0",
"css-loader": "^3.4.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^5.0.2",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"js-yaml": "^3.13.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"react-a11y": "^1.0.0",
"react-c3js": "0.1.20",
"react-css-modules": "^4.7.11",
"react-hot-loader": "^4.12.18",
"react-leaflet": "^1.9.1",
"react-modal": "^3.3.1",
"redbox-react": "^1.3.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.2",
"webpack": "^4.41.4",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"yaml-loader": "^0.5.0"
},
"dependencies": {
"atob": "^2.1.2",
"babel-polyfill": "^6.26.0",
"c3": "^0.4.21",
"d3": "^3.5.17",
"es6-promise": "^4.2.4",
"leaflet": "^1.0.2",
"lodash": "^4.17.21",
"react": "^16.3.0",
"react-dom": "^16.14.0",
"react-redux": "^5.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.2.0",
"soda-js": "github:takahiko-naito/soda-js#build-0.2.4",
"whatwg-fetch": "^2.0.3"
}
}