-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.21 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
{
"name": "power-analytics",
"version": "1.0.0",
"description": "A data visualization dashboard sample project",
"scripts": {
"dev": "webpack serve --mode development",
"build": "rimraf public && webpack --mode production",
"build:image": "docker build . -t hoyangtsai/power-analytics",
"start": "node server.js"
},
"keywords": [
"react",
"webpack",
"boilerplate",
"template"
],
"author": "Hoyang Tsai",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/hoyangtsai/power-analytics.git"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@reduxjs/toolkit": "^1.9.5",
"antd": "^5.6.2",
"d3-array": "^3.2.4",
"d3-geo": "^3.1.0",
"echarts": "^5.4.2",
"express": "^4.18.2",
"localforage": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.0",
"react-router-dom": "^6.13.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"clsx": "^1.2.1",
"css-loader": "^6.7.3",
"dayjs": "^1.11.8",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "2.4.5",
"postcss-loader": "^6.2.1",
"prettier": "3.0.0",
"react-dev-utils": "^12.0.1",
"reselect": "^4.1.8",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.2",
"webpack": "^5.77.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.13.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}