-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "htl-utl",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build --base=/hsl-utl/",
"preview": "vite preview",
"lint:eslint": "eslint \"src/**/*.{js,ts,vue}\"",
"lint:stylelint": "stylelint \"src/**/*.{css,vue}\"",
"lint:prettier": "prettier --check \"src/**/*.{js,ts,vue}\"",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier",
"fix:eslint": "eslint --fix \"src/**/*.{js,ts,vue}\"",
"fix:stylelint": "stylelint --fix \"src/**/*.{css,vue}\"",
"fix:prettier": "prettier --write \"src/**/*.{js,ts,vue}\"",
"fix": "npm run fix:eslint && npm run fix:stylelint && npm run fix:prettier"
},
"dependencies": {
"destyle.css": "^4.0.0",
"pinia": "^2.1.7",
"radix-vue": "^1.2.1",
"vue": "^3.3.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-vue": "^4.5.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.18.1",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "^3.1.0",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vue-tsc": "^1.8.22"
}
}