-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "lifehacking-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.2.2",
"@sentry/nextjs": "^10.47.0",
"firebase": "^12.11.0",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.72.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@fast-check/vitest": "^0.4.0",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.1.2",
"autoprefixer": "^10.4.27",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"fast-check": "^4.6.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.17",
"typescript": "^5",
"vitest": "^4.1.2"
}
}