forked from matter-labs/zksync-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.86 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
{
"name": "zksync-docs",
"type": "module",
"description": "ZKsync Docs V3",
"version": "0.0.0",
"license": "MIT",
"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",
"particles.vue3": "^2.12.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.12",
"vue-tsc": "^2.0.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@matterlabs/docs-nuxt-template": "2.3.0",
"@nuxt/content": "^2.12.1",
"@nuxt/eslint": "^0.3.12",
"@nuxt/fonts": "^0.3.0",
"@nuxt/image": "^1.6.0",
"@nuxt/ui-pro": "^1.0.2",
"@nuxtjs/seo": "^2.0.0-rc.10",
"@tsparticles/slim": "^3.3.0",
"@tsparticles/vue3": "^3.0.1",
"@vite-pwa/nuxt": "^0.8.0",
"nuxt": "^3.11.2",
"nuxt-gtag": "^2.0.6",
"nuxt-headlessui": "^1.2.0",
"nuxt-og-image": "^3.0.0-rc.45",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0",
"vue-easy-lightbox": "^1.19.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",
"corsProxy": true
}
}