-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.34 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mtb-official",
"author": "Wesley",
"private": true,
"version": "2.2.0",
"packageManager": "pnpm@9.5.0",
"scripts": {
"dev": "vite",
"build:only": "vite build",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint:fix": "eslint --ext .vue,.js,.ts,.tsx ./src --max-warnings 0 --fix --cache",
"lint": "pnpm lint:tsc && eslint --ext .vue,.js,.ts,.tsx ./src --max-warnings 0 --cache",
"lint:tsc": "tsc --noEmit",
"test": "vitest run",
"test:update": "vitest run -u",
"test:coverage": "vitest run --coverage",
"test:gui": "vitest --ui"
},
"dependencies": {
"nprogress": "^0.2.0",
"path": "^0.12.7",
"scrollreveal": "^4.0.9",
"swiper": "^11.2.5",
"tdesign-icons-vue-next": "^0.3.4",
"tdesign-vue-next": "^1.11.3",
"vite-plugin-pwa": "^0.21.1",
"vue": "^3.5.13",
"vue-clipboard3": "^2.0.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"@babel/preset-env": "^7.26.9",
"@types/babel__traverse": "~7.20.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.5.1",
"@types/nprogress": "^0.2.3",
"@types/raf": "^3.4.3",
"@types/swiper": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^2.1.9",
"@vue/babel-plugin-jsx": "1.2.2",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"babel-eslint": "^10.1.0",
"cypress": "^14.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"ignore": "^5.3.2",
"jsdom": "^19.0.0",
"less": "^4.2.2",
"lint-staged": "^13.3.0",
"lodash-es": "^4.17.21",
"npm-run-all2": "^7.0.2",
"prettier": "2.8.1",
"sass-embedded": "^1.85.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": [
"prettier --write --cache",
"eslint --fix --cache"
]
}
}