forked from wouterkleijn/hackyourfuture.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
55
56
57
58
59
60
61
{
"name": "hyf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"config": {
"kib": {
"apiDir": "content-api"
}
},
"scripts": {
"postinstall": "cd api && npm i",
"dev": "export ENVIRONMENT=dev&&npm-run-all dev:config dev:start",
"dev:config": "cd api && npm run dev:config",
"dev:start": "npm-run-all --parallel dev:start:*",
"dev:start:api": "cd api && npm run dev",
"dev:start:nuxt": "nuxt",
"dev:start:server-content": "kib",
"generate": "export ENVIRONMENT=prod&&npm-run-all --parallel --race generate:*",
"generate:server": "kib generate -g ./dist",
"generate:nuxt": "nuxt generate",
"lambda": "npm-run-all lambda:prepare lambda:zip",
"lambda:prepare": "webpack --config api-lambda/webpack.config.js",
"lambda:zip": "cd api-lambda/dist && zip -r ./../../lambda.zip *",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nuxtjs/proxy": "^1.2.4",
"axios": "^0.18.1",
"nuxt": "^2.1.0",
"validator": "^10.8.0",
"vuelayers": "^0.11.1"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.4.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-vue": "^4.7.1",
"husky": "^1.0.0-rc.13",
"kibbeling": "^1.0.4",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"nuxt-sass-resources-loader": "^2.0.3",
"prettier": "^1.14.0",
"sass-loader": "^7.1.0"
}
}