-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.48 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
{
"name": "idux-setup",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint \"./{mock,scripts,src}/**/*.{vue,ts,tsx}\" --fix",
"lint:stylelint": "stylelint \"./src/**/*.{vue,less,css}\" --fix",
"lint-staged": "lint-staged"
},
"dependencies": {
"@idux/cdk": "^1.0.0-beta.19",
"@idux/components": "^1.0.0-beta.19",
"@idux/pro": "^1.0.0-beta.19",
"@vueuse/core": "^7.7.1",
"axios": "^0.27.2",
"date-fns": "^2.28.0",
"lodash-es": "^4.17.21",
"pinia": "^2.0.14",
"pinia-plugin-persist": "^1.0.0",
"vue": "^3.2.33",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.9",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"less": "^4.1.2",
"lint-staged": "^12.3.7",
"mockjs": "^1.1.0",
"postcss": "^8.4.12",
"postcss-html": "^1.3.0",
"postcss-less": "^6.0.0",
"prettier": "^2.6.1",
"rollup": "^2.70.1",
"stylelint": "^14.6.1",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-windicss": "^1.8.3",
"vue-tsc": "^0.32.1",
"windicss": "^3.5.1"
},
"engines": {
"node": ">= 16.0.0"
},
"keywords": [
"vue",
"vue3",
"ts",
"typescript",
"vite",
"admin",
"admin-system",
"admin-template",
"idux",
"idux-admin"
],
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
],
"*.{less,vue}": [
"stylelint --fix"
]
}
}