-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
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
{
"name": "neovateai.dev",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"analyze": "ANALYZE=true npm run build",
"build": "next build",
"debug": "NODE_OPTIONS='--inspect' next dev",
"deploy": "bun run scripts/deploy.ts",
"dev": "next --turbopack",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"start": "next start -p 9996",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "^15.5.9"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.35",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "4.1.10",
"@types/bun": "^1.3.5",
"@types/node": "24.10.1",
"@types/react": "^19.2.7",
"markdown-to-jsx": "^7.4.0",
"next-themes": "^0.4.6",
"nextra": "^4.6.1",
"nextra-theme-docs-neovate": "^4.6.4",
"pagefind": "^1.3.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-intersection-observer": "^8.26.2",
"tailwindcss": "4.1.10",
"typescript": "5.9.3"
},
"browserslist": [
">= .25%",
"not dead"
]
}