forked from matter-labs/zksync-web-era-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "zksync-web-v2-docs",
"description": "zkSync Docs V2",
"private": true,
"version": "1.0.1",
"license": "MIT",
"author": "Matter Labs",
"homepage": "https://zksync.io",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/matter-labs/zksync-web-v2-docs/issues"
},
"check-md": {
"cwd": "./docs",
"defaultIndex": [
"README.md"
],
"exitLevel": "warn",
"ignoreFootnotes": true
},
"dependencies": {
"@vuepress/plugin-toc": "next",
"markdown-it-footnote": "3.0.2",
"vuepress": "^1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@vuepress/plugin-back-to-top": "^1.9.7",
"check-md": "^1.0.1",
"commitlint": "^11.0.0",
"cspell": "^4.1.5",
"husky": "^7.0.0",
"lint-staged": "^12.1.7",
"markdownlint": "^0.25.0",
"markdownlint-cli": "^0.25.0",
"prettier": "2.1.2",
"semantic-release": "^18.0.1",
"vue": "2.6.14",
"vuepress-plugin-canonical": "^1.0.0",
"vuepress-plugin-flexsearch": "^0.3.0"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint:dead": "node ./replacer.js && check-md",
"lint:fmt": "prettier --check \"docs/**/*.md\"",
"lint:mdl": "markdownlint -c .markdownlint.json \"docs/**/*.md\"",
"lint:spell": "cspell docs/**/*.md",
"fix:fmt": "prettier --write \"docs/**/*.md\"",
"fix:mdl": "yarn lint:md --fix",
"ci": "yarn lint:dead; yarn lint:fmt;",
"ci:fix": "yarn fix:mdl; yarn fix:fmt",
"ci:build": "yarn ci && yarn docs:build",
"prepare": "husky install",
"semantic-release": "semantic-release",
"postinstall": "husky install"
},
"lint-staged": {
"*.md": "yarn run ci:fix"
},
"packageManager": "yarn@3.1.1"
}