forked from nuxt-modules/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.07 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
{
"name": "@nuxtjs/storybook",
"version": "4.0.1",
"description": "Storybook integration with NuxtJS",
"repository": "nuxt-community/storybook",
"license": "MIT",
"bin": {
"nuxt-storybook": "bin/nuxt-storybook.js"
},
"files": [
"bin",
"dist",
"storybook"
],
"scripts": {
"build": "yarn clean && tsc && mkdist --src src/runtime --dist dist/runtime",
"clean": "rimraf dist",
"dev": "STORYBOOK_LIFE_UNIVERSE_AND_EVERYTHING=42 yarn nuxt-storybook playground",
"nuxt-storybook": "ts-node src/cli",
"test": "yarn lint",
"lint": "eslint --ext .ts,.js,.vue ./src",
"release": "yarn test && standard-version && yarn build && git push --follow-tags && npm publish"
},
"dependencies": {
"@nuxt/devalue": "^1.2.5",
"@nuxt/postcss8": "^1.1.3",
"@storybook/addon-essentials": "~6.2.2",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/vue": "~6.2.2",
"arg": "^5.0.0",
"consola": "^2.15.3",
"create-require": "^1.1.1",
"css-loader": "^5.2.0",
"jiti": "^1.6.4",
"postcss": "^8.2.9",
"upath": "^2.0.1",
"vue-loader": "^15.9.6"
},
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@nuxt/content": "^1.14.0",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/color-mode": "^2.0.5",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/proxy": "^2.1.0",
"@types/ci-info": "latest",
"@types/inquirer": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"mkdist": "^0.1.3",
"node-sass": "^5.0.0",
"nuxt-edge": "^2.16.0-26958266.9212d34e",
"react-docgen-typescript-plugin": "^0.7.0",
"rimraf": "^3.0.2",
"sass-loader": "^10.1.1",
"standard-version": "latest",
"typescript": "^4.2.3"
},
"publishConfig": {
"access": "public"
}
}