-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.08 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "dolphin-admin-react",
"description": "🐬 Dolphin Admin React is an open source, lightweight, out-of-the-box, elegant and exquisite, internationalized backend panel template based on React + TypeScript + Vite + antd + TailwindCSS.",
"author": "Bruce Song <recall4056@gmail.com> (https://github.com/recallwei/)",
"repository": {
"type": "git",
"url": "https://github.com/bit-ocean-studio/dolphin-admin-react"
},
"bugs": {
"url": "https://github.com/bit-ocean-studio/dolphin-admin-react/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build:staging": "pnpm type:check && NODE_ENV=staging vite build --mode staging",
"build:prod": "pnpm type:check && NODE_ENV=production vite build --mode production",
"preview": "vite preview",
"clean": "rimraf dist",
"desktop:dev": "tauri dev",
"desktop:build:staging": "NODE_ENV=staging tauri build --mode staging",
"desktop:build:prod": "NODE_ENV=production tauri build --mode production",
"deploy:staging": "sh scripts/deploy-staging.sh",
"deploy:prod": "sh scripts/deploy-prod.sh",
"lint:check": "pnpm type:check && pnpm cspell:check && pnpm eslint:check && pnpm prettier:check",
"type:check": "tsc --pretty --noEmit --composite false",
"cspell:check": "cspell --no-progress --show-suggestions --show-context --cache **",
"eslint:check": "eslint . --color --cache",
"eslint:fix": "eslint . --color --cache --fix",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"cz": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepare": "husky"
},
"dependencies": {
"@ant-design/cssinjs": "1.19.1",
"@ant-design/happy-work-theme": "^1.0.0",
"@ant-design/icons": "^5.3.6",
"@dolphin-admin/utils": "^0.0.23",
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query-devtools": "^5.29.2",
"@tauri-apps/api": "^1.5.3",
"ahooks": "^3.7.11",
"antd": "^5.16.2",
"axios": "^1.6.8",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"echarts": "^5.5.0",
"i18next": "^23.11.2",
"immer": "^10.0.4",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.22.3",
"socket.io-client": "^4.7.5",
"use-immer": "^0.9.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz",
"zustand": "^4.5.2"
},
"devDependencies": {
"@bit-ocean/commitlint-config": "^0.0.17",
"@bit-ocean/cspell": "^0.0.17",
"@bit-ocean/eslint-config": "^0.0.17",
"@bit-ocean/prettier-config": "^0.0.17",
"@bit-ocean/tsconfig": "^0.0.17",
"@brucesong/eslint-config-react": "^1.0.22",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@dolphin-admin/auto-import": "^0.0.12",
"@dolphin-admin/bootstrap-animation": "^0.0.6",
"@iconify/json": "^2.2.201",
"@iconify/react": "^4.1.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tauri-apps/cli": "^1.5.11",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.3",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"commitizen": "^4.3.0",
"cspell": "^8.7.0",
"cz-git": "^1.9.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.75.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-auto-import-ahooks": "^0.0.2",
"unplugin-auto-import-antd": "^0.0.1",
"unplugin-icons": "^0.18.5",
"unplugin-info": "^1.1.0",
"vite": "^5.2.9",
"vite-plugin-compression": "^0.5.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"private": true,
"license": "MIT"
}