-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "knext",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"migrate:make": "knex migrate:make",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"lint": "eslint .",
"test": "node --conditions=react-server --import tsx --test test/**/*.test.ts",
"check": "npm run lint && npm test && npm run build",
"audit:all": "npm audit --audit-level=low",
"audit:prod": "npm audit --omit=dev --audit-level=low"
},
"dependencies": {
"@fontsource/roboto": "^5.2.10",
"@radix-ui/react-avatar": "^1.2.0",
"@radix-ui/react-slot": "^1.3.0",
"better-sqlite3": "^13.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"knex": "^3.2.10",
"lucide-react": "^1.21.0",
"next": "^16.3.3",
"next-auth": "^5.0.0-beta.32",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0"
},
"browser": {
"knex": false,
"crypto": false,
"stream": false,
"fs": false,
"timers": false,
"tty": false,
"better-sqlite3": false
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@types/node": "^24.10.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.3.3",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}