-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 838 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 838 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
{
"name": "ycode-docs",
"version": "1.0.0",
"description": "Documentation site for Ycode - Open Source Visual Website Builder",
"private": true,
"scripts": {
"dev": "next --turbopack",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"start": "next start",
"screenshots": "npx playwright test --config scripts/screenshots/playwright.config.ts"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"next": "^15.3.0",
"nextra": "^4.0.0",
"nextra-theme-docs": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"pagefind": "^1.3.0",
"typescript": "^5.7.0"
}
}