forked from 57code/sheep-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
54
55
56
57
58
59
60
61
{
"name": "sheep-ui",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.ts,.tsx,.vue --fix",
"prepare": "husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"gen-version": "node scripts/gen-version",
"gen-icon": "ts-node scripts/genicon/index",
"test": "vitest",
"build:components": "npm run gen-version && node ./scripts/build.js"
},
"dependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"@testing-library/vue": "^6.5.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jsdom": "^16.2.14",
"@types/svgo": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vitejs/plugin-vue-jsx": "^1.3.8",
"@vue/test-utils": "^2.0.0-rc.21",
"autoprefixer": "^10.4.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.1",
"happy-dom": "^2.47.0",
"husky": ">=6",
"jest": "^28.1.0",
"jsdom": "^19.0.0",
"lint-staged": ">=10",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"svgo": "^2.8.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vitepress": "^0.22.3",
"vitepress-theme-demoblock": "^1.4.2",
"vitest": "^0.6.1",
"vue-tsc": "^0.29.8"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": "eslint --cache --fix"
}
}