This repository has been archived by the owner on Sep 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@arkecosystem/docs",
"description": "Official documentation for the ARK Ecosystem",
"contributors": [
"Brian Faust <[email protected]>"
],
"license": "MIT",
"keywords": [
"ark",
"blockchain",
"crypto",
"dpos",
"docs",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ARKEcosystem/docs.git"
},
"bugs": {
"url": "https://github.com/ARKEcosystem/docs/issues"
},
"homepage": "https://github.com/ARKEcosystem/docs",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter docs/.vuepress",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter docs/.vuepress --fix",
"titles": "markdown-title-case docs -r",
"titles:fix": "markdown-title-case docs -r --fix"
},
"devDependencies": {
"@dated/markdown-title-case": "^0.1.7",
"axios": "^0.19.0",
"eslint": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.0.0",
"highlight.js": "^9.13.1",
"husky": "^4.0.0",
"lint-staged": "^9.0.0",
"nprogress": "^0.2.0",
"sweetalert": "^2.1.0",
"vue": "^2.5.21",
"vue-tabs-component": "^1.5.0",
"vuepress": "^1.0.0-alpha.44",
"vuepress-plugin-tabs": "^0.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}