-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "river-shape-matcher",
"description": "A web application that allows users to draw a river shape on a map and find similar river shapes from a dataset.",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"author": {
"name": "Himanshu Maurya",
"email": "himanshu.indie@gmail.com",
"url": "https://codingstark.com"
},
"scripts": {
"dev": "tsx server/index.ts",
"start": "tsx server/index.ts",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"axios": "^1.15.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"leaflet": "^1.9.4",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-leaflet": "^5.0.0",
"vite": "^8.0.8"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.6.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~6.0.2"
}
}