forked from thunur/vue-naive-ui-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.65 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
107
108
109
110
111
112
113
114
115
{
"name": "aso.design",
"version": "0.0.1",
"author": {
"name": "thunur"
},
"scripts": {
"dev": "vite --host",
"build": "cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
"preview": "pnpm run build && vite preview --host",
"preview:dist": "vite preview --host",
"gen": "plop",
"vtsc": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint ./src --ext .vue,.js,jsx,.ts,tsx",
"lint:fix": "eslint --fix ./src --ext .vue,.js,jsx,.ts,tsx",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lock": "rimraf yarn.lock && rimraf pnpm-lock.yaml && rimraf package.lock.json",
"clean:lib": "rimraf node_modules",
"clean": "pnpm clean:lock && pnpm clean:lib",
"release": "standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"svgo": "svgo -f ./src/assets/icons",
"ghpages": "cross-env NODE_ENV=production vite build --base=/naive-admin/ && esno ./build/script/postBuild.ts",
"prepare": "husky install"
},
"resolutions": {
"rollup": "^2.62.0"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"dependencies": {
"@better-scroll/core": "^2.4.2",
"@iconify/iconify": "^2.1.2",
"@vueuse/core": "^8.0.0",
"axios": "^0.25.0",
"crypto-js": "^4.1.1",
"echarts": "^5.3.1",
"highlight.js": "^11.4.0",
"lodash-es": "^4.17.21",
"mockjs": "^1.1.0",
"path-to-regexp": "^6.2.0",
"pinia": "^2.0.11",
"qrcode": "^1.5.0",
"qs": "^6.10.3",
"resize-observer-polyfill": "^1.5.1",
"tinycolor2": "^1.4.2",
"vue": "^3.2.31",
"vue-i18n": "~9.1.9",
"vue-router": "^4.0.13",
"vue-types": "^4.1.1",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^15.0.0",
"@iconify/json": "^2.1.12",
"@iconify/vue": "^3.1.4",
"@tauri-apps/cli": "^1.1.1",
"@types/crypto-js": "^4.1.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/mockjs": "^1.0.6",
"@types/node": "^17.0.21",
"@types/qrcode": "^1.4.2",
"@types/qs": "^6.9.7",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"chalk": "^5.0.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"esno": "^0.14.1",
"fs-extra": "^10.0.1",
"husky": "^7.0.4",
"less": "^4.1.2",
"lint-staged": "^12.3.5",
"naive-ui": "^2.26.4",
"plop": "^3.0.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"svgo": "^2.8.0",
"typescript": "^4.6.2",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.8.6",
"vite-plugin-html": "^3.1.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-windicss": "^1.8.3",
"vue-tsc": "^0.32.1",
"windicss": "^3.5.1"
},
"license": "MIT"
}