forked from NethermindEth/StarknetByExample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 903 Bytes
/
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
{
"name": "starknet-by-example",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vocs dev",
"build": "vocs build",
"preview": "vocs preview"
},
"dependencies": {
"@types/react": "latest",
"react": "latest",
"react-dom": "^18.3.1",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"typescript": "latest",
"vocs": "1.0.0-alpha.62"
},
"devDependencies": {
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14"
},
"pnpm": {
"patchedDependencies": {
"vocs": "patches/vocs.patch"
},
"overrides": {
"vocs>shiki": "^1.23.0",
"vocs>@shikijs/core": "^1.23.0",
"vocs>@shikijs/types": "^1.23.0",
"vocs>@shikijs/rehype": "^1.23.0",
"vocs>@shikijs/twoslash": "^1.23.0",
"vocs>@shikijs/transformers": "^1.23.0"
}
}
}