-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 2 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
{
"name": "nuxt-netlify-lambda-starter",
"version": "1.0.0",
"description": "SEO-friendly website starter in Vue + Nuxt backed by Netlify lambda functions",
"author": "Alexander Schwartzberg",
"private": true,
"scripts": {
"dev:frontend": "nuxt",
"dev:lambdas": "netlify-lambda serve lambdas",
"dev": "run-p dev:*",
"build:frontend": "nuxt generate",
"build:lambdas": "netlify-lambda build lambdas",
"build": "run-p build:*",
"start": "nuxt start",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "run-p lint:",
"precommit": "npm run lint",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/proxy": "^1.3.1",
"dotenv": "^6.2.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.0.0-rc.11",
"cross-env": "^5.2.0",
"nuxt": "^2.4.0",
"nuxt-jsonld": "^0.0.6",
"vue-github-buttons": "^3.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.1.0",
"netlify-lambda": "^1.3.1",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"npm-run-all": "4.1.x",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"vue-cli-plugin-netlify-lambda": "^0.1.1",
"vue-jest": "^3.0.3"
}
}