-
Notifications
You must be signed in to change notification settings - Fork 489
/
package.json
91 lines (91 loc) · 2.39 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "zksync-lite-docs",
"description": "zkSync Lite documentation",
"private": true,
"version": "2.8.0",
"license": "MIT",
"author": "Matter Labs",
"homepage": "https://docs.lite.zksync.io/",
"keywords": [
"zk-rollup",
"web3",
"wallet",
"defi",
"cryptopayments",
"zksync dapps",
"dapp",
"ethers",
"zkSync",
"Matter Labs",
"rollup",
"ZK rollup",
"zero confirmation",
"ZKP",
"zero-knowledge proofs",
"Ethereum",
"crypto",
"blockchain",
"permissionless",
"L2",
"secure payments",
"scalable crypto payments"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"docs:dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"docs:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"docs:deploy": "NODE_OPTIONS=--openssl-legacy-provider yarn docs:build && firebase deploy",
"cspell": "cspell lint --no-summary --fail-fast --no-progress --no-must-find-files -c cspell.json docs/**/*.md ",
"md:lint": "markdownlint --config .markdownlintrc ./docs/**/*.md",
"md:fix": "markdownlint --fix -c .markdownlintrc ./docs/**/*.md",
"ci:lint": "yarn cspell && yarn md:lint",
"semantic-release": "semantic-release",
"postinstall": "husky install"
},
"bugs": {
"url": "https://github.com/matter-labs/zksync-lite-docs/issues"
},
"dependencies": {
"markdown-it-footnote": "^3.0.3",
"vuepress-plugin-canonical": "^1.0.0",
"vuepress-plugin-fulltext-search": "^2.2.1",
"vuepress-plugin-sitemap": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@mr-hope/vuepress-plugin-seo": "^1.28.5",
"@semantic-release/changelog": "^6.0.1",
"cspell": "^5.18.5",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.1",
"semantic-release": "^19.0.2",
"vuepress": "^1.9.7"
},
"lint-staged": {
"**/*.md": [
"markdownlint --fix",
"cspell lint --config cspell.json"
]
},
"optionalDependencies": {
"fs-extra": "^10.0.1"
},
"resolutions": {
"highlight.js": "10"
},
"packageManager": "yarn@3.2.0"
}