-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.22 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
{
"name": "vue-ts-startkit",
"version": "0.1.0",
"author": {
"name": "b0yblake",
"email": "[email protected]",
"url": "http://lich.work/"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "eslint ./src --ext .vue,.js,.ts",
"lint-fix": "eslint --fix ./src --ext .vue,.js,.ts",
"lint:script": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test": "jest",
"test:coverage": "jest --coverage",
"commit": "cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0 -s",
"docs": "typedoc --out ./docs/ ./src/ && npm run serve:docs",
"serve:docs": "http-server ./docs -p 3001 -o",
"analysis": "cross-env use_analyzer=true vue-cli-service build",
"prepare": "husky install"
},
"main": "dist/index.js",
"files": [
"@types"
],
"license": "MIT",
"types": "./@types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/b0yblake/vue-ts-startkit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@vitejs/plugin-vue-jsx": "^1.1.5",
"@vueuse/core": "^5.1.3",
"axios": "^0.21.1",
"babel-jest": "^26.5.6",
"cross-env": "^7.0.3",
"es6-promise": "^4.2.8",
"include-media": "^1.4.10",
"lodash-es": "^4.17.21",
"swiper": "^6.7.5",
"vite-plugin-components": "^0.11.1",
"vue": "^3.1.5",
"vue-axios": "^3.2.4",
"vue-cli-plugin-vuetify": "^2.4.1",
"vue-i18n": "^8.24.4",
"vue-router": "^4.0.9",
"vuetify": "3.0.0-alpha.9",
"vuex": "^4.0.2",
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^3.0.0-1",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.3.2",
"@tailwindcss/line-clamp": "^0.2.0",
"@tailwindcss/typography": "^0.4.0",
"@types/jest": "^26.0.24",
"@types/mocha": "^8.2.3",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/cli-plugin-unit-jest": "5.0.0-beta.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.10",
"autoprefixer": "^10.2.6",
"babel-core": "^7.0.0-bridge.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"husky": "^7.0.1",
"jest": "^26.5.6",
"lint-staged": "^11.0.0",
"node-sass": "^6.0.0",
"postcss": "^8.3.5",
"prettier": "^2.3.1",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"tailwindcss": "^2.2.0",
"ts-jest": "^26.5.6",
"typescript": "^4.3.3",
"vite": "^2.3.7",
"vue-jest": "^5.0.0-alpha.10",
"vue-tsc": "^0.0.24"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix"
}
}