-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.71 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "nextjs-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check --write --error-on-warnings",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules' --fix",
"typecheck": "tsc --noEmit --pretty",
"check": "npm run lint && npm run typecheck",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"test:e2e:report": "playwright show-report .playwright/playwright-report",
"test": "npm run test:unit && npm run test:e2e"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"next": "^16.2.4",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"baseline-browser-mapping": "^2.10.23",
"jsdom": "^29.0.2",
"lefthook": "^2.1.6",
"markdownlint-cli2": "^0.22.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}