-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 KB
/
package.json
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
{
"name": "open-data-aggregator",
"version": "1.0.0",
"type": "module",
"description": "",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"crawl": "bun run crawl/index.ts",
"crawl:dev": "bun crawl/playground.ts",
"crawl:dry": "DRY_RUN=1 bun run crawl"
},
"author": "Jens Ochsenmeier <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.5.0",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@types/unzip-stream": "^0.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.3",
"@tailwindcss/typography": "^0.5.14",
"axios": "^1.7.5",
"clsx": "^2.1.1",
"csv-parse": "^5.5.6",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"encoding": "^0.1.13",
"glob": "^11.0.0",
"json-schema": "^0.4.0",
"next": "14.2.6",
"playwright": "^1.46.1",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"radix-themes-tw": "^0.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"unzip-stream": "^0.3.4",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.2"
}
}