-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@surveylegend/hapi-docs",
"version": "3.0.0",
"description": "Beautiful API documentation generator for Hapi using Vue",
"author": "SurveyLegend <[email protected]> (https://github.com/SurveyLegend)",
"contributors": [
"Henrik Ruscon",
"Robert Michalski"
],
"type": "module",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "nodemon examples/server.js",
"prepublishOnly": "yarn build",
"heroku-postbuild": "yarn build"
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"dependencies": {
"@hapi/hoek": "^11.0.2",
"joi": "^17.9.2",
"js-cookie": "^3.0.5",
"marked": "^4.3.0",
"prismjs": "^1.29.0",
"vue": "^2.7.14",
"vue-prism-component": "^1.2.0",
"vuex": "^3.6.2"
},
"peerDependencies": {
"@hapi/hapi": ">=20"
},
"devDependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-standard": "^8.0.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.11.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"svg-url-loader": "^8.0.0",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.82.0"
},
"keywords": [
"hapi",
"hapi-plugin",
"api",
"api-documentation",
"static-site-generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/surveylegend/hapi-docs.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/surveylegend/hapi-docs/issues"
},
"engines": {
"node": ">=14"
},
"homepage": "https://github.com/surveylegend/hapi-docs#readme",
"browserslist": [
"> 1%",
"last 2 versions"
]
}