-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.87 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.87 KB
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
87
88
89
90
{
"name": "syncmaster_ui",
"version": "0.3.2",
"private": true,
"description": "Frontend for SyncMaster",
"license": "Apache-2.0",
"packageManager": "yarn@4.8.1",
"type": "commonjs",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve",
"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 --fix src",
"lint-check": "eslint src",
"type-check": "tsc --noEmit",
"prettier": "prettier src --write --list-different",
"prettier-check": "prettier src --check --list-different",
"bundle-analyze": "cross-env BUNDLE_ANALYZER=true cross-env NODE_ENV=production webpack --progress",
"check": "yarn lint && yarn type-check",
"pre-commit-install": "husky"
},
"dependencies": {
"@ant-design/icons": "5.6.1",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-query-devtools": "5.91.3",
"@xyflow/react": "12.10.1",
"ace-builds": "1.43.6",
"antd": "4.24.16",
"axios": "1.13.6",
"clsx": "2.1.1",
"dayjs": "1.11.19",
"dotenv-webpack": "8.1.1",
"i18next": "24.2.3",
"rc-picker": "4.11.3",
"react": "18.3.1",
"react-ace": "14.0.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.1.2",
"react-i18next": "15.7.4",
"react-router-dom": "6.30.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.4",
"@svgr/webpack": "8.1.0",
"@types/node": "25.3.3",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"cross-env": "10.1.0",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "7.0.4",
"eslint": "9.39.3",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"fork-ts-checker-webpack-plugin": "9.1.0",
"html-webpack-plugin": "5.6.6",
"husky": "9.1.7",
"less": "4.5.1",
"less-loader": "12.3.1",
"lint-staged": "16.3.1",
"mini-css-extract-plugin": "2.10.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.16",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"webpack": "5.105.3",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3",
"webpack-merge": "6.0.1"
},
"engines": {
"node": ">18",
"npm": ">10"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,less}": "prettier --write --list-different",
"src/**/*.{ts,tsx}": "eslint --fix"
}
}