-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.11 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
{
"name": "vite-vue3.3",
"private": true,
"version": "1.0.0",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"init": "pnpm i",
"serve:dev": "vite --host --mode development",
"serve:dev:egw": "cross-env VITE_PUBLIC_PATH=/environment-guarantee-web/ VITE_APP_TYPE=egw vite --host --mode development --config vite.egw-config.ts",
"serve:qa": "vite --host --mode staging",
"serve:prod": "vite --host --mode production",
"build": "vue-tsc && vite build",
"build:prod": "vite build --mode production",
"build:dev": "vite build --mode development",
"build:qa": "vite build --mode staging",
"preview": "vite preview --host",
"lint:ts-fix": "eslint --fix ./src --ext .vue,.js,.ts,.jsx,.tsx,.json,.md",
"lint:prettier": "prettier --write ./src",
"prepare": "npx simple-git-hooks"
},
"dependencies": {
"@cbd-wujie-components/osp-query": "1.0.5-beta.0",
"@element-plus/icons-vue": "^2.1.0",
"@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
"@vueuse/core": "^10.1.2",
"axios": "^1.4.0",
"crypto-js": "^4.2.0",
"echarts": "^5.5.1",
"element-plus": "^2.7.3",
"js-cookie": "^3.0.5",
"lodash-unified": "^1.0.3",
"mockjs": "^1.1.0",
"pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0",
"snabbdom": "^3.5.1",
"swiper": "^11.1.9",
"vform3-builds": "^3.0.10",
"vue": "^3.2.47",
"vue-awesome-swiper": "^5.0.1",
"vue-pdf-embed": "^2.1.1",
"vue-router": "^4.2.4",
"wujie-polyfill": "^1.0.11",
"wujie-react": "^1.0.22",
"wujie-vue3": "^1.0.22"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vben/stylelint-config": "workspace:*",
"@vben/ts-config": "workspace:*",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.20",
"cnjm-postcss-px-to-viewport": "^1.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-check-file": "^2.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"lint-staged": "^15.2.5",
"prettier": "^2.8.8",
"sass": "^1.63.4",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.0.2",
"unocss": "^0.60.3",
"unplugin-auto-import": "^0.17.6",
"unplugin-element-plus": "^0.7.2",
"vite": "^4.3.2",
"vite-plugin-html": "^3.2.1",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.4.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node vertify-commit.cjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
],
"*.{scss,less,styl,html}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=9.0.2"
}
}