forked from tact-lang/tact-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 844 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
{
"type": "module",
"dependencies": {
"@vercel/analytics": "^0.1.8",
"next": "^13.1.2",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"clean": "rm -fr .next out",
"deps": "yarn install --frozen-lockfile",
"dev": "yarn deps && yarn clean && next",
"build": "yarn deps && yarn clean && next build",
"post-build": "echo 'spell checking, link checking, formatting'",
"build-pages": "yarn build && node ./scripts/redirects-generate.js",
"next": "next",
"spell": "cspell \"**\""
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/node": "^18.11.19",
"@types/react": "18.2.61",
"cspell": "^8.8.4",
"typescript": "^4.9.5"
},
"license": "CC-BY-4.0",
"packageManager": "[email protected]"
}