-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nuxt-craft-starter",
"version": "1.0.0",
"description": "A starter for projects that require Nuxt JS + Craft CMS + Tailwind CSS",
"author": "rsagency",
"private": false,
"scripts": {
"dev": "node --max-old-space-size=4096 node_modules/nuxt/bin/nuxt.js dev",
"build": "node --max-old-space-size=4096 node_modules/nuxt/bin/nuxt.js build",
"start": "node --max-old-space-size=4096 node_modules/nuxt/bin/nuxt.js start",
"generate": "node --max-old-space-size=4096 node_modules/nuxt/bin/nuxt.js generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"graphql-schema": "node schemaQuery.js"
},
"dependencies": {
"@braid/vue-formulate": "^2.5.2",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@nuxt/http": "^0.6.4",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/router-extras": "^1.1.1",
"@tailwindcss/forms": "^0.5.0",
"form-data-json-convert": "^1.3.1",
"graphql": "^16.1.0",
"graphql-tag": "^2.10.1",
"gsap": "npm:@gsap/shockingly@^3.8.0",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"lodash.orderby": "^4.6.0",
"lozad": "^1.16.0",
"nuxt": "^2.15.8",
"nuxt-compress": "^5.0.0",
"nuxt-seomatic-meta": "^0.2.2",
"nuxt-webfontloader": "^1.1.0",
"pristinejs": "^0.1.9",
"qs": "^6.10.1",
"vanilla-lazyload": "^17.7.0"
},
"devDependencies": {
"@nuxt/postcss8": "^1.1.3",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/svg": "^0.3.0",
"@tailwindcss/typography": "^0.5.2",
"@vue/test-utils": "^1.0.0-beta.27",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"lodash-es": "^4.17.21",
"node-fetch": "^2.6.2",
"nuxt-gsap-module": "^1.6.0",
"postcss": "^8.4.7",
"prettier": "^1.19.1",
"sass": "^1.49.7",
"sass-loader": "^10.1.1",
"stylelint-config-recommended": "^3.0.0",
"tailwindcss": "^3.1.4"
},
"stylelint": {
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"responsive",
"variants",
"screen"
]
}
],
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"v-deep"
]
}
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null
}
}
}