-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "worldwise",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "eslint . --fix",
"typecheck": "tsc --noEmit",
"server": "json-server --watch data/cities.json --port 8000"
},
"keywords": [],
"author": "Hossein Agha",
"license": "ISC",
"type": "module",
"private": "true",
"dependencies": {
"json-server": "^1.0.0-beta.15",
"leaflet": "^1.9.4",
"react": "^19.2.7",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.7",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.17.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.6.0",
"prop-types": "^15.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.5",
"vite-plugin-eslint2": "^5.1.0"
}
}