forked from victronenergy/victron-press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.64 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
{
"name": "victron-press",
"version": "0.6.0",
"description": "Victron Energy documentation application",
"author": "Victron Energy",
"homepage": "https://github.com/victronenergy/victron-press",
"repository": {
"type": "git",
"url": "https://github.com/victronenergy/victron-press.git"
},
"bugs": {
"url": "https://github.com/victronenergy/victron-press/issues"
},
"scripts": {
"install": "npm run build:symlink",
"start": "vuepress dev data/docs",
"build:clean": "rimraf data/build data/dist",
"build:symlink": "symlink-dir frontend/vuepress data/docs/.vuepress",
"build:html": "node frontend/markdown-link-checker/check.js && vuepress build data/docs -d data/build/vuepress && rimraf data/build/vuepress/**/index.html && fs-move --merge --overwrite data/build/vuepress data/dist",
"build:pdf": "node frontend/markdown-pdf/build.js && fs-move --merge --overwrite data/build/pdf data/dist",
"build:index": "node frontend/build-index.js && fs-move --merge --overwrite data/build/index data/dist",
"build": "npm-run-all -p build:symlink build:clean build:link-checker -p build:html build:pdf build:index",
"lint": "eslint frontend/**/*.{js,vue}",
"fix": "prettier --write frontend/**/*.{js,vue} && eslint --fix frontend/**/*.{js,vue}"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && precise-commits"
}
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"cross-spawn": "^6.0.5",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"fs-extra": "^8.1.0",
"fs-move": "github:DvdGiessen/fs-move#cli",
"globby": "^10.0.0",
"hummus": "^1.0.104",
"husky": "^2.7.0",
"markdown-it-anchor": "^5.2.4",
"markdown-link-extractor": "^1.2.1",
"memory-streams": "^0.1.3",
"moment": "^2.24.0",
"npm-run-all": "^4.1.5",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"puppeteer": "^1.18.1",
"qrcode": "^1.4.0",
"rimraf": "^2.6.3",
"symlink-dir": "^3.1.0"
},
"dependencies": {
"@sentry/browser": "^5.4.3",
"@sentry/integrations": "^5.4.2",
"@toast-ui/vue-editor": "^1.1.1",
"axios": "^0.19.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-footnote": "^3.0.1",
"markdown-it-kbd": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.4.4",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-video": "^0.6.3",
"tui-editor": "^1.4.3",
"vue-directive-tooltip": "^1.6.2",
"vuepress": "^0.14.11",
"vuex": "^3.1.1"
}
}