forked from wearelucid/nuxt-netlify-functions-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"test": "cypress open",
"test:ci": "cypress run",
"generate": "nuxt generate",
"lint": "sass-lint -c .sass-lint.yml '**/*.scss' -v -q -i 'node_modules/**/*.scss' && eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.10.3",
"dotenv": "^8.2.0",
"element-ui": "^2.13.1",
"encoding": "^0.1.12",
"mailgun.js": "^2.0.1",
"node-fetch": "^2.6.1",
"normalize.css": "^8.0.1",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/eslint-module": "^1.2.0",
"babel-eslint": "^10.1.0",
"cypress": "^4.5.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-nuxt": ">=0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"netlify-cli": "2.48.0",
"node-sass": "^4.14.0",
"prettier": "^2.0.5",
"sass-lint": "^1.12.1",
"sass-loader": "^8.0.2"
}
}