-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "jet-autoflow-example",
"private": true,
"version": "0.0.16",
"author": "byzanteam",
"scripts": {
"prepare": "husky install",
"commitlint": "commitlint",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint --ext .js,.ts,.vue src",
"lint:fix": "vue-tsc --noEmit && eslint --ext .js,.ts,.vue --fix src",
"precommit": "lint-staged"
},
"prettier": "@byzanteam/prettier-config",
"license": "ISC",
"devDependencies": {
"@byzanteam/commitlint-config": "^1.0.0",
"@byzanteam/prettier-config": "^1.0.1",
"@commitlint/cli": "^17.4.1",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"@byzanteam/eslint-config-vue-ts": "latest",
"@byzanteam/tsconfig": "latest",
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.11.8",
"@vitejs/plugin-vue": "^3.2.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.26.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4",
"vite": "^3.2.0",
"vite-plugin-pages": "^0.28.0",
"vue-tsc": "^1.0.9"
},
"engineStrict": true,
"engines": {
"node": ">=16"
},
"lint-staged": {
"src/**/*.{ts,vue}": "eslint --fix"
},
"dependencies": {
"vue": "^3.2.41",
"vue-router": "^4.1.6"
}
}