-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.66 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": "syncmaster_ui",
"version": "1.0.0",
"private": true,
"description": "Initial settings for react app",
"license": "UNLICENSED",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve",
"start:prod": "cross-env NODE_ENV=production webpack serve",
"build": "rimraf ./dist && cross-env NODE_OPTIONS=--max_old_space_size=8192 && cross-env NODE_ENV=production webpack",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"check": "yarn lint && yarn type-check",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"bundle:analyze": "cross-env BUNDLE_ANALYZER=true cross-env NODE_ENV=production webpack --progress",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons": "5.5.1",
"@tanstack/react-query": "5.56.2",
"@tanstack/react-query-devtools": "5.56.2",
"@xyflow/react": "12.4.1",
"antd": "4.24.13",
"axios": "1.7.7",
"clsx": "2.1.1",
"dayjs": "1.11.13",
"dotenv-webpack": "8.1.0",
"rc-picker": "4.9.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.13",
"react-router-dom": "6.22.3"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@types/node": "20.12.2",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"cross-env": "7.0.3",
"css-loader": "6.10.0",
"css-minimizer-webpack-plugin": "6.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"fork-ts-checker-webpack-plugin": "9.0.2",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.6",
"less": "4.2.0",
"less-loader": "12.2.0",
"lint-staged": "15.2.2",
"mini-css-extract-plugin": "2.8.1",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"style-loader": "3.3.4",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "9.5.1",
"typescript": "5.4.3",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "5.10.0"
},
"lint-staged": {
"*.(ts|tsx|js|jsx)": [
"node tsc-check.js",
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">18",
"npm": ">10"
},
"packageManager": "[email protected]"
}