-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
104 lines (104 loc) · 2.95 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": "vivu",
"version": "2.1.0",
"description": "A highly scalable vue boilerplate using vite",
"author": "Faizal Andyka",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/logustra/vivu"
},
"bugs": "https://github.com/logustra/vivu/issues",
"keywords": [
"vue",
"typescript",
"atomic-design",
"ddd",
"spa",
"atomic-design-example",
"ddd-example",
"boilerplate",
"vue-boilerplate",
"vite"
],
"main": "index.js",
"scripts": {
"prepare": "husky install",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"dev": "cp env/env.dev .env && vite --mode dev",
"build:dev": "pnpm clean:dist && cp env/env.dev .env && vite build --mode prod",
"build:prod": "pnpm clean:dist && cp env/env.prod .env && vite build --mode prod",
"build:report": "pnpm clean:dist && cp env/env.prod .env && vite build --mode report",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:coverage": "pnpm clean:coverage && vitest --coverage",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@iconify/json": "^2.1.139",
"@intlify/unplugin-vue-i18n": "^0.8.0",
"@types/js-cookie": "^3.0.2",
"@unocss/preset-wind": "^0.46.5",
"@unocss/reset": "^0.48.0",
"@unocss/transformer-directives": "^0.48.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/compiler-sfc": "^3.2.4",
"@vuedx/typecheck": "^0.7.6",
"@vuedx/typescript-plugin-vue": "^0.7.6",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"@vueuse/integrations": "^9.5.0",
"camelcase": "^6.2.0",
"dotenv-cli": "^6.0.0",
"element-plus": "2.2.19",
"husky": "^8.0.2",
"js-cookie": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.27",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.55.0",
"typescript": "^4.9.3",
"umi-request": "^1.4.0",
"unimport": "^1.0.1",
"unocss": "^0.46.5",
"unplugin-icons": "^0.14.13",
"unplugin-vue-components": "^0.22.9",
"vite": "^4.0.0",
"vite-plugin-fonts": "^0.6.0",
"vue": "^3.2.45",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@histoire/plugin-vue": "^0.11.7",
"@types/node": "^18.11.9",
"@vitest/coverage-c8": "^0.25.2",
"chalk": "^4.1.2",
"commander": "^7.2.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"happy-dom": "^7.7.0",
"histoire": "^0.11.7",
"shelljs": "^0.8.5",
"vitest": "^0.25.2"
},
"volta": {
"node": "14.19.1"
}
}