-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
60 lines (60 loc) · 1.92 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
{
"name": "hapi.dev",
"version": "1.0.0",
"description": "The hapi.dev developer portal",
"repository": "git://github.com/hapijs/hapi.dev",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"static": "NODE_ENV=production node server/static.js",
"build": "nuxt build",
"docker-build": "docker build -t hapi.dev .",
"docker-up": "docker-compose up -d",
"docker-down": "docker-compose down",
"gen": "nuxt generate",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "node assets/js/getModuleInfo && nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"devTest": "node assets/js/getModuleInfo",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"license": "BSD-3-Clause",
"dependencies": {
"@aitodotai/json-stringify-pretty-compact": "^1.3.0",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/hapi": "^3.0.0",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/pwa": "^3.2.2",
"@nuxtjs/svg": "^0.4.0",
"axios": "^0.26.0",
"bulma": "^0.9.1",
"cookie-universal-nuxt": "^2.0.17",
"cross-env": "^7.0.2",
"fs": "0.0.1-security",
"highlight.js": "^11.4.0",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"markdown-toc": "^1.2.0",
"nuxt": "^2.15.8",
"semver": "^7.3.2",
"vue-codemirror": "^4.0.6",
"vue-highlightjs": "^1.3.3",
"vue-js-modal": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"sass": "^1.49.8",
"sass-loader": "^10.1.1"
}
}