-
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.38 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.38 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": "loopi",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "[ -d '.git' ] && git config core.hooksPath .githooks || true",
"dev": "next dev",
"dev:webpack": "next dev",
"build": "next build",
"start": "tsx scripts/db-migrate.ts && tsx scripts/post-migrate.ts && next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:integration": "vitest --config vitest.integration.config.ts --run",
"test:contract": "vitest --config vitest.contract.config.ts --run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:init": "tsx scripts/db-init.ts",
"db:troubleshoot": "tsx scripts/db-troubleshoot.ts",
"db:check": "tsx scripts/db-check.ts",
"db:migrate": "tsx scripts/db-migrate.ts",
"db:push": "drizzle-kit push",
"cleanup": "knip",
"cleanup:fix": "knip --fix"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@sentry/nextjs": "^10.32.1",
"@types/nodemailer": "^7.0.4",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"next": "^16.0.10",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^7.0.12",
"postgres": "^3.4.7",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"resend": "^6.6.0",
"ts-fsrs": "^5.2.3",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"drizzle-kit": "^0.31.8",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^27.3.0",
"knip": "^5.79.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.15"
}
}