This repository was archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 KB
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
{
"name": "developmint.de",
"version": "1.4.0",
"description": "Our company website",
"author": "Alexander Lichter <alichter@developmint.de>",
"private": true,
"scripts": {
"dev": "nuxt",
"generate": "nuxt generate && yarn lambda-build",
"lambda-build": "netlify-lambda build ./functions",
"lambda-dev": "yarn lambda-build && yarn lambda-serve",
"lambda-serve": "netlify-lambda serve ./functions",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/netlify-files": "^1.2.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^1.3.1",
"@nuxtjs/tailwindcss": "^1.4.1",
"@vue/composition-api": "^0.6.7",
"eslint-plugin-nuxt": "^0.5.2",
"intersection-observer": "^0.12.2",
"nodemailer": "^6.3.0",
"nuxt-edge": "^2.10.0-26326094.e9c4bcfe",
"nuxt-i18n": "^6.28.1",
"nuxt-svg-loader": "^1.2.0",
"nuxt-webfontloader": "^1.1.0",
"postcss-nested": "^4.2.3",
"shifty": "^2.20.4",
"validator": "^11.1.0",
"vue-cookieconsent-component": "^1.2.0",
"vue-if-bot": "^1.2.0",
"vue-observe-visibility": "^0.4.6",
"vuelidate": "^0.7.7",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.1.2",
"@nuxtjs/proxy": "^1.3.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"husky": "^3.1.0",
"netlify-lambda": "^1.6.3",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}