This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 814
/
package.json
78 lines (78 loc) · 2.25 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
{
"name": "zksync-web-v2-docs",
"version": "2.0.0",
"description": "zkSync Docs V2",
"license": "MIT",
"author": "Matter Labs",
"homepage": "https://zksync.io",
"type": "module",
"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
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:clean-dev": "vuepress dev docs --clean-cache",
"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:mdl --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"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@google-translate-select/vue3": "^0.1.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@vuepress/client": "2.0.0-beta.60",
"@vuepress/plugin-docsearch": "^2.0.0-beta.60",
"@vuepress/plugin-register-components": "next",
"check-md": "^1.0.2",
"commitlint": "^17.3.0",
"cspell": "^6.18.1",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"vue": "^3.2.45",
"vuepress": "2.0.0-beta.60",
"vuepress-plugin-seo2": "2.0.0-beta.235",
"vuepress-theme-hope": "2.0.0-beta.146"
},
"lint-staged": {
"*.md": "yarn run ci:fix"
},
"packageManager": "[email protected]"
}