-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "ai-comparator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx --fix",
"build:pages": "npx @cloudflare/next-on-pages@1 && node scripts/patch-routes.js",
"build:cf": "npx @cloudflare/next-on-pages@1",
"postbuild:cf": "node scripts/patch-routes.js",
"deploy:cf": "wrangler pages deploy .vercel/output/static --branch production"
},
"dependencies": {
"@aws-sdk/client-bedrock": "^3.972.0",
"@aws-sdk/client-bedrock-runtime": "^3.972.0",
"@types/node": "20.11.30",
"autoprefixer": "10.4.14",
"chart.js": "4.4.1",
"next": "15.5.9",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.3",
"tailwindcss": "3.4.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.16",
"@types/react": "19.1.11",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"typescript-eslint": "^8.53.1",
"babel-plugin-react-compiler": "^19.1.0-rc.1-rc-af1b7da-20250421",
"eslint": "^9.39.2",
"eslint-config-next": "15.5.9",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tailwindcss": "^3.18.2",
"eslint-plugin-unused-imports": "^4.3.0",
"sharp": "^0.34.5"
},
"overrides": {
"cookie": "^0.7.0",
"undici": "^5.28.6",
"glob": "^10.5.0",
"path-to-regexp": "^6.3.0",
"js-yaml": "^4.1.1",
"esbuild": "^0.25.0"
},
"engines": {
"node": ">=18.18.0"
}
}