forked from zksync-sdk/sdk-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "zksync-docs",
"type": "module",
"description": "zkSync Docs V3",
"version": "0.0.0",
"license": "MIT",
"author": "Matter Labs",
"homepage": "https://zksync.io",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/bun": "^1.0.8",
"@vue/test-utils": "^2.4.5",
"cspell": "^8.6.0",
"eslint": "^8.52.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"markdownlint": "^0.33.0",
"markdownlint-cli2": "^0.12.1",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.12",
"vue-tsc": "^2.0.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@nuxt/content": "^2.12.1",
"@nuxt/eslint": "^0.3.10",
"@nuxt/fonts": "^0.7.0",
"@nuxt/image": "^1.7.0",
"@nuxt/ui": "^2.16.0",
"@nuxt/ui-pro": "^1.2.0",
"@nuxtjs/seo": "^2.0.0-rc.10",
"nuxt": "^3.10.3",
"nuxt-headlessui": "^1.2.0",
"nuxt-og-image": "^3.0.0-rc.53",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0"
},
"scripts": {
"build": "nuxt generate",
"dev": "DEV=true nuxt dev",
"preview": "nuxt preview",
"lint:spelling": "cspell **/*.md --config=./cspell.json",
"lint:markdown": "markdownlint-cli2 \"content/**/*.md\" --config \".markdownlint.json\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"prepare": "node .husky/install.mjs",
"postinstall": "nuxt prepare",
"ci:check": "bun run lint:eslint && bun run lint:prettier && bun run lint:spelling && bun run lint:markdown",
"release": "semantic-release"
}
}