forked from FightingDesign/fighting-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2 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
{
"name": "fighting-design",
"private": true,
"workspaces": [
"packages/*",
"docs",
"start"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"clean": "rimraf dist",
"start": "pnpm run -C start dev",
"dev:docs": "pnpm run -C docs dev",
"build": "pnpm clean && vite build && pnpm build:theme && pnpm move",
"build:theme": "vite build --config vite.config.theme.ts",
"build:docs": "pnpm run -C docs build",
"build:start": "pnpm run -C start build",
"move": "node script/move-file.ts",
"new": "node script/new-component",
"test": "vitest",
"prettier": "prettier --write .",
"commit": "cz",
"lint": "eslint 'packages/**/*.{js,ts,vue,jsx,tsx}'",
"prepare": "husky install"
},
"dependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@fighting-design/fighting-components": "workspace:*",
"@fighting-design/fighting-theme": "workspace:*",
"@fighting-design/fighting-utils": "workspace:*",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/test-utils": "^2.0.0-rc.18",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"happy-dom": "^3.2.2",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"sass": "^1.50.1",
"typescript": "^4.7.3",
"vite": "^2.9.5",
"vite-plugin-dts": "^1.2.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.10.0",
"vue": "^3.2.33",
"vue-tsc": "^0.34.10"
},
"devDependencies": {
"@eslint-sets/eslint-config-vue3-ts": "^2.1.5",
"@juln/change-case": "^0.0.4",
"@types/node": "^17.0.42",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"fs-extra": "^10.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"super-ejs": "^1.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": [
"prettier --write",
"eslint --fix",
"eslint",
"git add"
]
}
}