-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.51 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
{
"name": "@agarics/vite-ts-starter",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.4.0",
"description": "vite vue template starter",
"type": "module",
"author": "agarics",
"scripts": {
"dev": "vite",
"bootstrap": "pnpm install",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build",
"build:analyze": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode analyze",
"build:docker": "vite build --mode docker",
"build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode test",
"postinstall": "simple-git-hooks && turbo run stub",
"lint": "turbo run lint",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write .",
"lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
"reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
"cz-commit": "cz"
},
"dependencies": {
"@unocss/reset": "^0.61.0",
"@vueuse/core": "^10.11.0",
"daisyui": "^3.9.4",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"unocss-preset-daisy": "^7.0.0",
"vue": "^3.4.29",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@agarics/eslint-config": "workspace:^",
"@agarics/stylelint-config": "workspace:^",
"@agarics/ts-config": "workspace:^",
"@agarics/vite-config": "workspace:^",
"@commitlint/cli": "^19.3.0",
"@iconify/utils": "^2.1.25",
"@types/lodash-es": "^4.17.12",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-config": "^0.61.0",
"@unocss/preset-legacy-compat": "^0.61.0",
"@unocss/preset-rem-to-px": "^0.61.0",
"@unocss/transformer-compile-class": "^0.61.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vueuse/integrations": "^10.11.0",
"axios": "^1.7.2",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"cross-env": "^7.0.3",
"cz-customizable": "^7.0.0",
"less": "^4.2.0",
"lint-staged": "^15.2.7",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.0.4",
"typescript": "^5.0.2",
"unocss": "^0.61.0",
"vite": "^5.3.2"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=9.0.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
}
}