-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
119 lines (119 loc) · 3.77 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
118
119
{
"name": "vivu",
"version": "1.0.0",
"description": "A highly scalable vue boilerplate using vite",
"main": "index.js",
"keywords": [
"vue",
"typescript",
"atomic-design",
"ddd",
"spa",
"atomic-design-example",
"ddd-example",
"boilerplate",
"vue-boilerplate",
"vite"
],
"repository": {
"type": "git",
"url": "https://github.com/logustra/vivu"
},
"bugs": "https://github.com/logustra/vivu/issues",
"author": "Faizal Andyka",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage",
"dev": "cp env/env.dev .env && vite --mode development",
"build:dev": "pnpm clean:dist && cp env/env.dev .env && vite build --mode production",
"build:prod": "pnpm clean:dist && cp env/env.prod .env && vite build --mode production",
"build:report": "pnpm clean:dist && cp env/env.prod .env && vite build --mode report",
"serve": "vite preview",
"stylelint": "stylelint --config stylelint.config.js 'src/**/*.{vue,scss}'",
"stylelint:fix": "stylelint --config stylelint.config.js --fix 'src/**/*.{vue,scss}'",
"linter": "eslint -c .eslintrc.js --ext .js,.vue,.ts, src",
"linter:fix": "eslint -c .eslintrc.js --fix --ext .js,.vue,.ts, src",
"lint": "pnpm linter && pnpm stylelint",
"lint:fix": "pnpm linter:fix && pnpm stylelint:fix",
"test": "pnpm clean:coverage && jest",
"test:watch": "pnpm clean:coverage && jest --watch"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/vue": "^6.5.0",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chalk": "^4.1.2",
"commander": "^7.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.16.0",
"jest": "26.6.3",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.6.4",
"shelljs": "^0.8.4",
"standard": "^16.0.3",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-rscss": "^0.4.0",
"stylelint-scss": "^3.20.1",
"ts-jest": "26.5.6",
"vue-jest": "^5.0.0-alpha.10"
},
"dependencies": {
"@iconify/json": "^1.1.390",
"@intlify/vite-plugin-vue-i18n": "^2.4.0",
"@rollup/plugin-yaml": "^3.1.0",
"@types/js-cookie": "^2.2.7",
"@vitejs/plugin-legacy": "^1.5.1",
"@vitejs/plugin-vue": "^1.4.0",
"@vue/compiler-sfc": "^3.2.4",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"@vuelidate/core": "^2.0.0-alpha.24",
"@vuelidate/validators": "^2.0.0-alpha.21",
"@vueuse/integrations": "^4.11.2",
"autoprefixer": "^10.3.1",
"axios": "^0.21.1",
"camelcase": "^6.2.0",
"dotenv-cli": "^4.0.0",
"element-plus": "1.0.2-beta.44",
"husky": "^7.0.1",
"js-cookie": "^3.0.0",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"sass": "^1.38.0",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"vite": "^2.5.0",
"vite-plugin-components": "^0.9.2",
"vite-plugin-fonts": "^0.2.2",
"vite-plugin-icons": "^0.5.1",
"vite-plugin-style-import": "^0.10.1",
"vue": "^3.2.4",
"vue-i18n": "^9.1.7",
"vue-router": "^4.0.11",
"vuex": "^4.0.2"
},
"volta": {
"node": "14.17.1"
}
}