-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "header",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "run-p type-check build-only",
"build-only": "vite build",
"preview": "vite preview",
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"lint:prettier": "prettier --check . --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:prettier",
"type-check": "vue-tsc --noEmit",
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.2.45",
"vue-i18n": "^9.7.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-rem-to-responsive-pixel": "^6.0.0",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.4",
"typescript": "~4.7.4",
"vite": "4.1.5",
"vue-tsc": "^1.0.12"
},
"lint-staged": {
"*.js|*.vue": [
"eslint --fix",
"prettier --write"
]
}
}