-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 2.78 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "amis-admin",
"version": "0.1.0",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8192' vite build",
"dev": "vite dev --host",
"d": "bunx --bun vite",
"b": "bunx --bun vite build",
"eslint": "eslint ./src --ext js,jsx,ts,tsx,json --quiet --fix",
"oxlint": "oxlint --fix ./src",
"stylelint": "stylelint ./src/**/*.{css,less,styl,scss,sass} --fix --quiet",
"postinstall": "husky install",
"lint:all": "npm run eslint && npm run stylelint",
"prepare": "husky install",
"reset": "npx rimraf ./**/node_modules",
"fb": "node scripts/server.cjs"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/pro-components": "^2.6.43",
"@fireboom/client": "^0.2.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "~20.10.5",
"@types/react": "~18.2.46",
"@types/react-dom": "~18.2.18",
"@unocss/preset-wind": "^0.58.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"ahooks": "^3.7.8",
"amis": "^6.1.0",
"amis-editor": "^6.1.0",
"amis-editor-core": "^6.1.0",
"antd": "^5.12.4",
"axios": "^1.6.7",
"clsx": "^2.1.0",
"copy-to-clipboard": "^3.3.3",
"cropperjs": "^1.6.1",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.45.0",
"react": "~18.2.0",
"react-cropper": "^2.3.3",
"react-dom": "~18.2.0",
"react-router": "^6.21.1",
"react-router-dom": "^6.21.1",
"sass": "^1.69.6",
"tailwindcss": "^3.4.0",
"typescript": "~5.3.3",
"unocss": "^0.58.2",
"url": "^0.11.3",
"vite": "^5.0.10",
"vite-plugin-monaco-editor-new": "^1.1.3",
"vite-plugin-pages": "^0.32.0",
"vite-plugin-svgr": "^4.2.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@doremijs/eslint-config": "^0.2.2",
"@doremijs/prettier-config": "^0.1.3",
"@doremijs/stylelint-config": "^0.1.10",
"devmoji": "^2.3.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"oxlint": "^0.0.22",
"rimraf": "~5.0.5",
"stylelint": "^16.1.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"stylelint": "16",
"amis": "6.1.0",
"amis-editor": "6.1.0",
"amis-ui": "6.1.0"
}
},
"allowDeprecated": {
"source-map-resolve": "*",
"source-map-url": "*",
"resolve-url": "*",
"urix": "*",
"trim": "*",
"@types/vfile-message": "*"
}
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "@doremijs/prettier-config",
"stylelint": {
"extends": "@doremijs/stylelint-config"
},
"eslintConfig": {
"extends": "@doremijs/eslint-config/node",
"root": true
}
}