-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 977 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"name": "mobility-dashboard",
"version": "1.0.0",
"private": true,
"homepage": "https://negevurbanresearch.github.io/mobility-dashboard/",
"dependencies": {
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "BUILD_PATH='./build' react-scripts build",
"predeploy": "npm run build",
"deploy": "NODE_OPTIONS='--max-old-space-size=4096' gh-pages -d build -m 'Deploy React app'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"gh-pages": "^6.3.0",
"typescript": "^4.9.5"
}
}