generated from agileago/fe-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.78 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
{
"name": "starter",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --base /",
"type:check": "tsc --noEmit",
"lint": "eslint --fix .",
"format": "prettier --write '**/*.{ts,tsx,js,vue,css,scss,html,json}'",
"chrome": "open -n /Applications/Google\\ Chrome.app/ --args --disable-web-security --user-data-dir=$HOME/MyChromeDevUserData/",
"api": "tsg -c ./src/api/tsg.config.ts && prettier --write src/api/**/*.ts",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@abraham/reflection": "^0.12.0",
"@arco-design/web-vue": "^2.56.0",
"@morev/vue-transitions": "^2.3.6",
"@vueuse/core": "^10.11.0",
"axios": "1.6.5",
"css-render": "^0.15.14",
"dayjs": "^1.11.12",
"expired-storage": "^1.0.2",
"injection-js": "^2.4.0",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.2",
"tailwind-variants": "^0.1.20",
"ts-essentials": "^9.4.2",
"tslib": "^2.6.3",
"vue": "^3.4.35",
"vue-router": "^4.4.2",
"vue3-oop": "^1.0.6"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@types/expired-storage": "^1.0.4",
"@types/lodash": "^4.17.7",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.3",
"@types/prettier": "^3.0.0",
"@types/swagger-schema-official": "^2.0.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vue3-oop/plugin-vue-jsx": "^1.4.6",
"eslint": "~8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"less": "^4.2.0",
"lint-staged": "^15.2.8",
"lodash": "^4.17.21",
"postcss": "^8.4.40",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"sass": "^1.77.8",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.7",
"tailwindcss-rem2px-preset": "^1.0.3",
"terser": "^5.31.3",
"ts-gear": "^4.11.8",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-ali-oss": "^2.0.2",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-html-template": "^1.2.2",
"vite-plugin-mockit": "^1.0.2",
"vite-plugin-vue-devtools": "^7.3.7",
"vite-svg-loader": "^5.1.0",
"vite-tsconfig-paths": "^4.3.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"commit-msg": "pnpm exec commitlint -e \"$@\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,css,scss,html,json}": [
"prettier --write"
]
}
}