-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "nca_sandbox-charts",
"version": "1.0.0",
"private": false,
"homepage": "http://nemac.github.io/sandbox",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"ghdeploy": "gh-pages -d dist",
"start": "webpack-dev-server --open --hot --mode development",
"build": "webpack --mode production && cp -R sandboxdata/ dist/sandboxdata",
"lint": "eslint ./src"
},
"license": "MIT",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@testing-library/react": "^11.1.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^5.0.2",
"gh-pages": "^3.1.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^7.0.1",
"plotly.js-basic-dist": "^1.58.4",
"plotly.js-cartesian-dist": "^1.58.4",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"sass-loader": "^12.4.0",
"style-loader": "^1.0.1",
"url-loader": "^3.0.0",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.10.0",
"axios": "^0.21.1",
"file-saver": "^2.0.5",
"plotly.js-cartesian-dist-min": "^1.58.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-plotly.js": "^2.5.1"
}
}