-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
package.json
82 lines (82 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "fighting-design",
"private": true,
"workspaces": [
"packages/*",
"docs",
"start"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"clean": "rimraf dist && rimraf dist-icon",
"start": "pnpm run -C start dev",
"start:preview": "pnpm run -C start preview",
"dev:play": "pnpm run -C packages/fighting-playground dev",
"dev:docs": "pnpm run -C docs dev",
"build": "pnpm clean && pnpm build:css && pnpm build:theme && vite build",
"build:css": "vite build --config vite.config.css.ts",
"build:theme": "vite build --config vite.config.theme.ts",
"build:icon": "rimraf dist-icon && vite build --config vite.config.icon.ts",
"build:docs": "pnpm run -C docs build",
"build:start": "pnpm run -C start build",
"build:play": "pnpm run -C packages/fighting-playground build",
"serve:docs": "pnpm run -C docs serve",
"new": "pnpm run -C packages/fighting-add-component new",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prettier": "prettier --write .",
"commit": "cz",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"changelog": "node scripts/set-changelog",
"ver": "node scripts/set-version",
"format": "pnpm prettier && pnpm lint:fix"
},
"dependencies": {
"vue": "^3.4.27"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@fighting-design/eslint-config": "workspace:*",
"@fighting-design/fighting-icon": "workspace:*",
"@fighting-design/fighting-theme": "workspace:*",
"@types/node": "^22.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.5",
"@vue/test-utils": "^2.4.5",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"jsdom": "^24.0.0",
"lint-staged": "^13.0.3",
"postcss-preset-env": "^9.5.5",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.55.0",
"typescript": "^4.7.4",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^2.0.4",
"vue-tsc": "^1.8.0"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,json,md,yml,yaml}": [
"eslint --fix"
]
}
}