-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "comprehendo",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22"
},
"type": "module",
"scripts": {
"dev": "clear && next dev --turbopack",
"build": "next build",
"start": "next start",
"verify": "prettier --write . && eslint . && npx tsc --noEmit",
"check": "clear && npm run verify && npm run test:run && npx playwright test --reporter=list",
"nuke": "rm -rf node_modules package-lock.json .next && npm install",
"deps": "npx npm-check-updates",
"deps:update": "npx npm-check-updates -u && npm run nuke",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"check-github-action": "sleep 180 && curl -s \"https://api.github.com/repos/rgilks/comprehendo/actions/runs?per_page=1\" | jq '.workflow_runs[0].conclusion'",
"test:e2e": "npx playwright test --reporter=list",
"test:e2e:watch": "playwright test --watch",
"cleanup-db": "node scripts/cleanup-db.js",
"cleanup-db:dry-run": "node scripts/cleanup-db.js --dry-run",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@google/genai": "^1.32.0",
"@heroicons/react": "^2.2.0",
"@serwist/next": "^9.2.3",
"better-sqlite3": "^12.5.0",
"i18next": "^25.7.2",
"i18next-resources-to-backend": "^1.2.1",
"immer": "^11.0.1",
"motion": "^12.23.25",
"next": "16.0.8",
"next-auth": "^4.24.13",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-i18next": "^16.4.0",
"zod": "^4.1.13",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.2",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-immer": "^0.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.1.2",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.15"
}
}