forked from nuxt-modules/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·61 lines (61 loc) · 1.75 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
{
"name": "@nuxtjs/storybook",
"version": "2.1.0",
"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",
"clean": "rimraf dist",
"dev": "yarn nuxt-storybook playground",
"nuxt-storybook": "ts-node src/cli",
"test": "yarn lint",
"lint": "eslint --ext .ts,.js,.vue .",
"release": "yarn test && standard-version && yarn build && git push --follow-tags && npm publish"
},
"dependencies": {
"@storybook/addon-actions": "^6.0.7",
"@storybook/vue": "^6.0.7",
"arg": "^4.1.3",
"babel-preset-vue": "^2.0.2",
"consola": "^2.15.0",
"jiti": "^0.1.11"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/axios": "^5.12.1",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/proxy": "^2.0.1",
"@nuxtjs/tailwindcss": "^3.0.0",
"@storybook/addon-docs": "^6.0.7",
"@storybook/addon-knobs": "^6.0.7",
"@types/ci-info": "latest",
"@types/inquirer": "latest",
"babel-eslint": "latest",
"eslint": "latest",
"node-sass": "^4.14.1",
"nuxt-edge": "^2.14.2-26618428.4a9c9a15",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.3",
"standard-version": "latest",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
}
}