-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "vite-vue3-ts-tw-boilerplate",
"description": "A vite, Vue 3, TypeScript, and Tailwind CSS with ESLint and Prettier boilerplate",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"vite",
"vue3",
"typescript",
"tailwind",
"eslint",
"prettier",
"jest",
"vue-testing-library"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"lint": "npm-run-all lint:ts lint:markup",
"lint:fix": "npm-run-all lint:ts:fix",
"lint:ts": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --cache .",
"lint:ts:fix": "yarn lint:ts --fix",
"lint:markup": "vue-tsc --noEmit",
"test:unit": "jest",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/vue": "^6.4.2",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.3.1",
"eslint": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^12.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^3.0.7",
"ts-jest": "^27.0.4",
"typescript": "^4.3.4",
"vite": "^2.7.9",
"vue-tsc": "^0.30.1",
"vue3-jest": "27.0.0-alpha.2"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix"
}
}