-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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
{
"name": "nuxt-storybook",
"version": "1.0.0",
"description": "Example of using Nuxt + Storybook",
"author": "Lawrence Braun",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"storybook": "start-storybook -p 6060",
"build-storybook": "build-storybook -c .storybook"
},
"dependencies": {
"@nuxtjs/axios": "^5.6.0",
"@nuxtjs/dotenv": "^1.4.1",
"nuxt": "^2.9.2"
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.1",
"@storybook/vue": "^5.2.1",
"autoprefixer": "^8.6.4",
"babel-eslint": "^8.2.1",
"babel-preset-vue": "^2.0.2",
"cross-env": "^5.2.1",
"eslint": "^5.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.3.1",
"tailwindcss": "^0.6.1",
"webpack": "^4.41.0"
}
}