-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 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
78
79
80
81
82
{
"name": "three-eleven",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "npx tsc --noEmit",
"migrate": "dbmate -e DATABASE_URL -s ./db/schema.sql",
"queries": "pgtyped --config pgtyped.json --uri $DATABASE_URL && prettier --write './src/store/**/*.ts'",
"shadcn": "npx shadcn@latest add",
"seed-db": "npx tsx scripts/seed-db.ts",
"scrape": "npx tsx scripts/scrape-data.ts",
"inngest": "npx inngest-cli@latest dev -u http://localhost:3000/api/inngest",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@heroicons/react": "^2.2.0",
"@pgtyped/runtime": "^2.3.0",
"@playwright/test": "^1.54.2",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@turf/turf": "^7.2.0",
"@types/react-map-gl": "^6.1.7",
"@vitest/coverage-v8": "^3.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"envobj": "^2.0.2",
"h3-js": "^4.1.0",
"inngest": "^3.54.2",
"jsdom": "^26.1.0",
"lucide-react": "^0.474.0",
"mapbox-gl": "^3.9.4",
"msw": "^2.10.4",
"next": "^15.2.6",
"next-themes": "^0.4.4",
"pg": "^8.13.1",
"playwright": "^1.54.2",
"react": "^19.0.0",
"react-day-picker": "^8.10.1",
"react-dom": "^19.0.0",
"react-map-gl": "^7.1.9",
"redis": "^4.7.0",
"soda3-query": "^0.8.1",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"testcontainers": "^11.5.1",
"vaul": "^1.1.2",
"vitest": "^3.2.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@pgtyped/cli": "^2.3.0",
"@types/node": "^20",
"@types/pg": "^8.11.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"dbmate": "^2.25.0",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwind-scrollbar": "^4.0.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}