-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "nuxt-netlify-functions-example",
"version": "v1.0.0",
"description": "Nuxt.js example for running Netlify functions locally in a dev environment and as a generated static site deployed to Netlify",
"author": "Marco Ehrenmann <marco.ehrenmann@wearelucid.ch>",
"license": "MIT",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"test": "cypress open",
"test:ci": "cypress run",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.10.3",
"element-ui": "^2.13.1",
"encoding": "^0.1.12",
"mailgun.js": "^3.5.9",
"normalize.css": "^8.0.1",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-eslint": "^10.1.0",
"cypress": "^8.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-nuxt": ">=0.5.2",
"eslint-plugin-prettier": "^4.0.0",
"netlify-cli": "6.9.30",
"prettier": "^2.0.5"
}
}