-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@context-labs/docs",
"version": "0.0.92",
"repository": {
"type": "git",
"url": "git+https://github.com/context-labs/context-docs"
},
"author": "Sam Hogan<[email protected]>",
"license": "MIT",
"homepage": "https://usecontext.com",
"private": true,
"dependencies": {
"@heroicons/react": "~2.0.17",
"next": "~13.4.1",
"next-sitemap": "^4.1.3",
"next-themes": "~0.2.1",
"nextra": "~2.4.2",
"nextra-theme-docs": "~2.4.2",
"posthog-js": "^1.57.2",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"swr": "~2.1.5"
},
"devDependencies": {
"autoprefixer": "~10.4.14",
"postcss": "~8.4.23",
"tailwindcss": "~3.3.1"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "next build ",
"postbuild": "next-sitemap",
"clean": "pnpm run clean:node && pnpm run clean:build",
"clean:build": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"dev": "PORT=3003 next",
"lint": "next lint",
"start": "next start"
}
}