-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.38 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
{
"name": "otb",
"version": "1.17.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@loadable/component": "^5.15.2",
"axios": "^0.25.0",
"bayes": "^1.0.0",
"bootstrap": "^4.6.1",
"d3-array": "^3.1.1",
"d3-collection": "^1.0.7",
"d3-scale-chromatic": "^3.0.0",
"downloadjs": "^1.4.7",
"http-proxy-middleware": "^2.0.2",
"immutability-helper": "^3.1.1",
"jschardet": "^2.1.1",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"moment": "^2.29.1",
"netlify-lambda": "^2.0.15",
"papaparse": "^5.3.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dates": "^21.8.0",
"react-dom": "^16.14.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "5.0.0",
"react-select": "^3.2.0",
"react-tooltip": "^4.2.21",
"recharts": "^2.1.8",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-modal": "^4.0.0",
"redux-persist": "^6.0.0",
"redux-search": "^2.5.0",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5",
"uuid": "^8.3.2",
"xlsx": "^0.18.0",
"yauzl": "^2.10.0"
},
"scripts": {
"start": "react-scripts start",
"start:lambda": "netlify-lambda serve src/lambda --config webpack.functions.js",
"build": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda --config webpack.functions.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "yarn build --stats && webpack-bundle-analyzer build/bundle-stats.json"
},
"devDependencies": {
"axios-mock-adapter": "^1.20.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-config-react-app": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest-fetch-mock": "^3.0.3",
"pnp-webpack-plugin": "^1.7.0",
"redux-mock-store": "^1.5.4",
"webpack-bundle-analyzer": "^4.5.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!d3-array|d3-scale-chromatic|react-dates)"
]
}
}