-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@bouzu/monorepo",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"author": "zhong666 <[email protected]>",
"license": "MIT",
"homepage": "https://bouzu.zhong666.me",
"repository": {
"type": "git",
"url": "https://github.com/aa900031/bouzu"
},
"bugs": {
"url": "https://github.com/aa900031/bouzu/issues"
},
"scripts": {
"dev:sb-vue": "turbo run dev --no-daemon --filter='./stories/vue'",
"build:sb": "turbo run build --no-daemon --filter='./stories/*'",
"build:pkgs": "turbo run build --no-daemon --filter='./packages/**/*'",
"preview:sb-vue": "turbo run preview --filter=@bouzu/storybook-vue",
"publish:pkgs": "pnpm -r --filter='./packages/**/*' publish",
"test": "turbo run --no-daemon test",
"lint": "eslint . --cache --cache-location node_modules/.cache/eslint",
"clean:cache": "turbo run --no-daemon clean:cache",
"release": "turbo run --no-daemon release --concurrency=1"
},
"devDependencies": {
"@aa900031/eslint-config": "^1.3.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/mockjs": "^1.0.10",
"conventional-changelog-unjs": "^0.1.1",
"eslint": "^8.57.0",
"happy-dom": "^11.2.0",
"mockjs": "^1.1.0",
"release-it": "^16.3.0",
"rimraf": "^5.0.5",
"sirv-cli": "^2.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"pnpm": {
"overrides": {
"@storybook/core-common>file-system-cache": "2.4.1",
"@storybook/types>file-system-cache": "2.4.1"
}
}
}