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.59 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.59 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.6.0",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/netlify-files": "^1.0.0",
"@nuxtjs/pwa": "^3.0.0-beta.19",
"@nuxtjs/sitemap": "^1.3.1",
"@nuxtjs/tailwindcss": "^1.1.2",
"@vue/composition-api": "^1.7.2",
"eslint-plugin-nuxt": "^0.4.3",
"intersection-observer": "^0.7.0",
"nodemailer": "^6.3.0",
"nuxt-edge": "^2.10.0-26175435.15fa12fc",
"nuxt-i18n": "^6.3.0",
"nuxt-svg-loader": "^1.0.1",
"nuxt-webfontloader": "^1.1.0",
"postcss-nested": "^4.1.2",
"shifty": "^2.8.0",
"validator": "^11.1.0",
"vue-cookieconsent-component": "^1.2.0",
"vue-if-bot": "^1.2.0",
"vue-observe-visibility": "^0.4.4",
"vuelidate": "^0.7.4",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.1.2",
"@nuxtjs/proxy": "^1.3.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-loader": "^3.0.2",
"husky": "^3.0.8",
"netlify-lambda": "^1.6.3",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}