-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "nuxt-storyblok-starter",
"version": "0.0.2",
"private": false,
"contributors": [
{
"name": "Kevin Regenrek <hello@regenrek.at>",
"url": "https://github.com/regenrek"
}
],
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"unjui": "cd ../nujek && yarn build:ui && cd .. && rsync -a --delete ./nujek/packages/ui/ nuxt-storyblok-starter/modules/@nujek/ui/",
"unjsb": "cd ../nujek && yarn build:sb && cd .. && rsync -a --delete ./nujek/packages/storyblok/ nuxt-storyblok-starter/modules/@nujek/storyblok/"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@nuxtjs/color-mode": "^2.0.9",
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"eslint": "^7.29.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"postcss": "^8.3.5",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nuxt-i18n": "^6.20.1",
"slugify": "^1.4.6",
"swiper": "^6.4.8",
"vue-clickaway": "^2.2.2",
"vue-tailwind": "^2.1.1"
},
"dependencies": {
"@nujek/storyblok": "^0.0.103",
"@nujek/ui": "^2.0.29",
"@nuxtjs/composition-api": "^0.29.0",
"lodash.get": "^4.4.2",
"uuid": "^8.3.2",
"core-js": "^3.15.1",
"nuxt": "^2.15.7"
}
}