-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.29 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
{
"name": "account-book",
"description": "A simple account book built in React.js",
"version": "1.0.0",
"license": "MIT",
"author": "Jinchun Xia",
"repository": "",
"scripts": {
"dev": "webpack serve -c webpack.config.js --env development",
"build": "webpack -c webpack.config.js --env production"
},
"dependencies": {
"antd": "^4.16.11",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@types/lodash": "^4.14.172",
"@types/react": "^17.0.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^6.0.1",
"react-papaparse": "^3.17.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.25.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}