-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 917 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 917 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
32
33
34
35
36
{
"name": "eda-document-analyzer",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev --turbopack",
"dev-no-turbo": "next dev",
"build": "next build",
"build:static": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"test": "vitest"
},
"dependencies": {
"@tailwindcss/postcss": "^4.3.0",
"next": "^16.2.6",
"postcss": "^8.5.15",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@playwright/test": "^1.60.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@vitejs/plugin-react": "^6.0.2",
"jsdom": "^29.1.1",
"typescript": "6.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.8"
}
}