-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.29 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
116
117
{
"name": "arcro-vue",
"version": "1.0.0",
"private": true,
"license": "ISC",
"author": "wangguixing",
"keywords": [
"vue3",
"pinia",
"tsx",
"arco design"
],
"scripts": {
"prepare": "husky install",
"dev": "vite --config ./build/vite.config.dev.ts",
"build": "vue-tsc --noEmit && vite build --config ./build/vite.config.prod.ts",
"report": "cross-env REPORT=true npm run build",
"preview": "npm run build && vite preview --host",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint-staged": "git add . && npx lint-staged"
},
"homepage": "https://github.com/wangguixing/arcro-vue#readme",
"bugs": {
"url": "https://github.com/wangguixing/arcro-vue/issues",
"email": "GranceWang@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangguixing/arcro-vue"
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"mitt": "^3.0.0",
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@arco-design/web-vue": "^2.43.2",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rushstack/eslint-patch": "^1.2.0",
"@types/js-cookie": "^3.0.3",
"@types/jsdom": "^21.1.0",
"@types/mockjs": "^1.0.7",
"@types/node": "^18.14.2",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-legacy": "^4.0.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.0",
"@vue/tsconfig": "^0.1.3",
"axios": "^1.3.4",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"echarts": "^5.4.2",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"gsap": "^3.11.5",
"husky": "^8.0.3",
"js-cookie": "^3.0.1",
"jsdom": "^21.1.0",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"prettier": "^2.8.4",
"rollup-plugin-visualizer": "^5.9.0",
"stylelint": "^15.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-order": "^6.0.2",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-style-import": "^2.0.0",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.29.1",
"vue-echarts": "^6.5.4",
"vue-tsc": "^1.2.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
],
"*.{less,css}": [
"stylelint --fix",
"prettier --write"
]
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china"
},
"engines": {
"node": ">=16.0.0"
}
}