-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "vatsim-flight-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "tsx server/server.ts",
"dev": "concurrently \"vite build --watch\" \"tsx watch server/server.ts\"",
"build": "tsc -b && vite build",
"watch": "tsc -b -w"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"leaflet": "^1.9.4",
"leaflet-rotatedmarker": "^0.2.0",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"tsx": "^4.7.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/leaflet": "^1.9.8",
"@types/leaflet-rotatedmarker": "^0.2.5",
"@types/react": "^18.2.43",
"@types/react-bootstrap": "^0.32.35",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"prettier": "^3.2.5",
"sass": "^1.74.1",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}