forked from storybook-vue/storybook-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@storybook-nuxt/monorepo",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "Storybook for Nuxt and Vite: Develop Vue3 components in isolation with Hot Reloading.",
"keywords": [
"storybook",
"nuxt",
"vite",
"vue3"
],
"scripts": {
"build": "pnpm -r --filter=\"./packages/**/*\" run build",
"stub": "pnpm -r run stub",
"cleanup": "rimraf 'packages/**/node_modules' 'node_modules'",
"dev": "pnpm run stub && pnpm -C packages/storybook-nuxt dev",
"dev:cli": "pnpm run stub && pnpm -C packages/storybook-nuxt-cli dev",
"test:cli": "pnpm -C packages/storybook-nuxt-cli test",
"lint": "eslint .",
"release": "pnpm -r publish",
"test": "pnpm lint",
"docs": "nuxi dev docs",
"typecheck": "vue-tsc --noEmit",
"postinstall": "npx simple-git-hooks",
"prepare": "pnpm -r --filter=\"./packages/*\" run build"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.3",
"@storybook-vue/nuxt": "workspace:*",
"@types/node": "^16.18.70",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"lint-staged": "^13.3.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^4.9.5",
"ufo": "^1.3.2",
"unbuild": "^1.2.1",
"vite": "^4.5.1",
"vite-hot-client": "^0.2.3",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public"
}
}