-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "zksync-docs",
"type": "module",
"description": "ZKsync Docs V3",
"version": "0.0.0",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/bun": "1.1.10",
"@vue/test-utils": "2.4.6",
"cspell": "8.14.4",
"eslint": "9.11.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"markdownlint": "0.35.0",
"markdownlint-cli2": "0.14.0",
"nuxt": "3.13.2",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"typescript": "5.6.2",
"vue-tsc": "2.1.6"
},
"dependencies": {
"@matterlabs/docs-nuxt-template": "2.9.2",
"@tsparticles/slim": "3.5.0",
"@tsparticles/vue3": "3.0.1",
"@vite-pwa/nuxt": "0.10.5",
"nuxt-gtag": "3.0.1",
"rehype-katex": "7.0.1",
"remark-math": "6.0.0"
},
"scripts": {
"build": "nuxt generate",
"dev": "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"
},
"stackblitz": {
"installDependencies": true,
"startCommanad": "bun run dev"
}
}