-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:test": "vue-tsc --noEmit && vite build --mode test",
"build": "vue-tsc --noEmit && vite build --mode production",
"build:docker": "tsc && vite build --mode docker",
"preview": "vite preview",
"lint": "vue-tsc --noEmit && eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix",
"format": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\"",
"prepare": "husky install",
"docker:build": "vue-tsc --noEmit && docker build -t docker-vue .",
"docker:run": "docker rm -f docker-vue && docker run --name docker-vue -d -p 80:8082 docker-vue",
"release:local": "pnpm docker:build && pnpm docker:run",
"log:tree": "tree -N -I \"node_modules|.git|.idea\" -a"
},
"dependencies": {
"@vueuse/core": "^12.0.0",
"axios": "^1.7.9",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^4.1.3",
"vconsole": "^3.15.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^8.57.0",
"eslint-config-code-style-lint-vue3-ts": "^3.0.9",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "5.6.2",
"unplugin-auto-import": "^0.18.6",
"vite": "^6.0.2",
"vite-plugin-pages": "^0.32.4",
"vue-tsc": "^2.1.10"
}
}