-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "func.lol",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prebuild": "bun run scripts/tripwire/build-bombs.ts",
"start": "next start",
"lint": "eslint",
"test": "bun test",
"e2e": "bunx playwright test",
"e2e:ui": "bunx playwright test --ui"
},
"dependencies": {
"@maxmind/geoip2-node": "^6.3.4",
"@neondatabase/serverless": "^1.1.0",
"@paralleldrive/cuid2": "^3.3.0",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.4.0",
"drizzle-orm": "^0.45.2",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^22.19.19",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}