-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
106 lines (106 loc) · 3.71 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
102
103
104
105
106
{
"name": "dolphin-admin-vue",
"description": "🐬 Dolphin Admin Vue is an open source, lightweight, out-of-the-box, elegant and exquisite, internationalized backend management template based on Vue 3 + TypeScript + Vite + Naive UI + TailwindCSS.",
"author": "Bruce Song <[email protected]> (https://github.com/recallwei/)",
"contributors": [
"Bruce Song <[email protected]> (https://github.com/recallwei/)",
"Ivy (https://github.com/Upwards-rwr)"
],
"repository": {
"type": "git",
"url": "https://github.com/bit-ocean-studio/dolphin-admin-vue"
},
"bugs": {
"url": "https://github.com/bit-ocean-studio/dolphin-admin-vue/issues"
},
"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": "rm -rf 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",
"type:check": "vue-tsc --noEmit --composite false",
"cspell:check": "cspell \"**\"",
"eslint:check": "eslint \"**/*.{ts,tsx,js,tsx,vue}\" --color",
"eslint:fix": "pnpm eslint:check --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",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
},
"dependencies": {
"@dolphin-admin/utils": "^0.0.23",
"@tanstack/vue-query": "^5.14.1",
"@tauri-apps/api": "^1.5.2",
"@vueuse/core": "^10.7.0",
"@vueuse/motion": "^2.0.0",
"axios": "^1.6.2",
"d3": "^7.8.5",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"qrcode": "^1.5.3",
"socket.io-client": "^4.7.2",
"vue": "^3.3.12",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.0/xlsx-0.20.0.tgz"
},
"devDependencies": {
"@brucesong/eslint-config-vue": "^1.0.20",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@dolphin-admin/auto-import": "^0.0.12",
"@dolphin-admin/bootstrap-animation": "^0.0.6",
"@iconify/json": "^2.2.158",
"@iconify/vue": "^4.1.1",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@tauri-apps/cli": "^1.5.8",
"@types/jsdom": "^21.1.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.4",
"@types/nprogress": "^0.2.3",
"@types/qrcode": "^1.5.5",
"@vitejs/plugin-vue": "^4.5.2",
"autoprefixer": "^10.4.16",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cspell": "^8.1.3",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.8.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"naive-ui": "^2.35.0",
"postcss": "^8.4.32",
"prettier": "3.2.1",
"rollup-plugin-visualizer": "^5.11.0",
"sass": "^1.69.5",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.2",
"unplugin-icons": "^0.18.1",
"unplugin-vue-components": "^0.26.0",
"vite": "4.5.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-vue-devtools": "7.0.8",
"vue-tsc": "^1.8.25"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"private": true,
"license": "MIT"
}