forked from storyblok/nuxt-ultimate-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.22 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
{
"private": true,
"scripts": {
"prepare": "npx nuxi prepare",
"dev": "npx nuxi dev",
"build": "npx nuxi build",
"dev-ssl": "npx nuxi build --https --ssl-cert localhost.pem --ssl-key localhost-key.pem",
"generate": "npx nuxi generate",
"preview": "npx nuxi preview",
"deploy": "npx nuxi build && node .output/server/index.mjs",
"static-deploy": "npx nuxi generate && npx serve -s .output/public",
"stackblitz": "npm install axios@^0.27.2 && npm run dev",
"storyblok-login": "storyblok login",
"storyblok-logout": "storyblok logout"
},
"stackblitz": {
"startCommand": "npm run stackblitz"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/tailwindcss": "^6.1.1",
"@storyblok/nuxt": "^5.0.0",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-vue": "^9.0.1",
"nuxt": "^3.0.0",
"storyblok": "^3.16.1",
"typescript": "^4.7.2",
"vite-plugin-eslint": "^1.6.1"
},
"dependencies": {
"@nuxtjs/i18n": "^8.0.0-beta.9"
}
}