-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.63 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
{
"private": "true",
"name": "sreda_market",
"version": "1.0.0",
"license": "MIT",
"author": "Ilya",
"scripts": {
"build": "cross-env NODE_ENV=prod webpack --config webpack/webpack.config.js",
"dev": "cross-env NODE_ENV=dev webpack --config webpack/webpack.config.js",
"format": "eslint src --cache --fix",
"format:style": "stylelint \"src/**/*.scss\" --cache --fix",
"serve": "cross-env NODE_ENV=dev SERV=true webpack serve --open --config webpack/webpack.config.js",
"start": "cross-env NODE_ENV=dev SERV=true webpack serve --config webpack/webpack.config.js",
"stats": "cross-env NODE_ENV=prod webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.1",
"clsx": "^1.2.1",
"express": "^4.18.2",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@ant-design/charts": "^1.2.14",
"@ant-design/icons": "^4.7.0",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"antd": "^4.23.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"cssnano": "^5.0.7",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"papaparse": "^5.3.2",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^7.8.0",
"postcss-sort-media-queries": "^3.11.12",
"prettier": "^2.7.1",
"prettier-package-json": "^2.6.4",
"react-refresh": "^0.14.0",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^14.10.0",
"typescript": "^4.8.4",
"typescript-plugin-css-modules": "^1.3.1",
"webpack": "^5.45.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.5.0",
"webpack-merge": "^5.8.0"
},
"browserslist": [
"> 0.5%",
"last 3 versions"
]
}