-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"name": "flybox",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"install-playwright": "npx playwright install",
"build-frontend": "npx vite build -c config/vite.config.ts",
"build": "npm install && npm run install-playwright && npm run build-frontend",
"migrate-db": "npx prisma migrate dev --schema=./server/db",
"start": "node server/server.js"
},
"dependencies": {
"@google/genai": "^1.48.0",
"@prisma/adapter-neon": "^7.7.0",
"@prisma/client": "^7.7.0",
"@supercharge/promise-pool": "^3.3.0",
"bootstrap": "^5.3.8",
"chrono-node": "^2.9.0",
"date-fns": "^4.1.0",
"dotenv": "^17.4.1",
"exceljs": "^4.4.0",
"express": "^5.2.1",
"leaflet": "^1.9.4",
"multer": "^2.1.1",
"playwright": "^1.59.1",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^19.2.4",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.4",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.0",
"serpapi": "^2.2.1",
"tinyqueue": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bootstrap": "^5.2.10",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-dom": "^4.2.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-react-x": "^4.2.3",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prisma": "^7.7.0",
"sass": "^1.99.0",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-scss": "^7.0.0",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.7"
}
}