forked from styfle/edge-runtime
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 744 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 744 Bytes
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
{
"name": "@edge-runtime/docs",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build ",
"lint": "next lint",
"clean": "pnpm run clean:node && pnpm run clean:build",
"clean:node": "rm -rf node_modules",
"clean:build": "rm -rf dist"
},
"license": "MPL-2.0",
"dependencies": {
"@heroicons/react": "~1.0.6",
"next": "~15.5.10",
"next-themes": "0.2.0",
"nextra": "2.0.0-alpha.56",
"nextra-theme-docs": "2.0.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"swr": "1.3.0"
},
"devDependencies": {
"@mdx-js/react": "2.1.3",
"autoprefixer": "~10.4.8",
"postcss": "~8.4.16",
"tailwindcss": "~3.1.8"
}
}