-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.78 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mobility-database",
"version": "1.0.3",
"private": true,
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "7.3.6",
"@mui/material": "7.3.6",
"@mui/material-nextjs": "7.3.6",
"@mui/x-date-pickers": "8.23.0",
"@mui/x-tree-view": "8.23.0",
"@next/third-parties": "^16.1.6",
"@reduxjs/toolkit": "^1.9.6",
"@sentry/nextjs": "^10.42.0",
"@turf/center": "^6.5.0",
"@types/lodash": "^4.17.20",
"@types/react-map-gl": "^6.1.7",
"@vercel/analytics": "^1.6.1",
"axios": "^1.7.2",
"countries-list": "^3.1.1",
"country-flag-emoji-polyfill": "^0.1.8",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"export-to-csv": "^1.3.0",
"firebase": "^10.4.0",
"firebase-admin": "^13.0.2",
"formik": "^2.4.5",
"loadashes6": "^1.0.0",
"maplibre-gl": "^5.7.0",
"material-react-table": "^2.13.0",
"next": "16.1.1",
"next-intl": "^4.7.0",
"openapi-fetch": "^0.9.3",
"pmtiles": "^4.3.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-draggable": "^4.5.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.52.1",
"react-map-gl": "^8.0.4",
"react-redux": "^8.1.3",
"react-window": "^2.1.2",
"recharts": "^2.12.7",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.3",
"server-only": "^0.0.1",
"swr": "^2.4.0",
"yup": "^1.3.2"
},
"scripts": {
"build:prod": "next build",
"build:analyze": "next experimental-analyze",
"start:dev": "next dev",
"start:dev:mock": "NEXT_PUBLIC_API_MOCKING=enabled next dev -p 3001",
"start:prod": "next build && next start",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "CI=true jest",
"e2e:setup:dev": "concurrently -k -n \"next,firebase\" -c \"cyan,magenta\" \"NEXT_PUBLIC_API_MOCKING=enabled FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 next dev -p 3001\" \"firebase emulators:start --only auth --project mobility-feeds-dev\"",
"e2e:setup": "next build && concurrently -k -n \"next,firebase\" -c \"cyan,magenta\" \"NEXT_PUBLIC_API_MOCKING=enabled FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 next start -p 3001\" \"firebase emulators:start --only auth --project mobility-feeds-dev\"",
"e2e:run": "CYPRESS_BASE_URL=http://localhost:3001 cypress run",
"e2e:open": "CYPRESS_BASE_URL=http://localhost:3001 cypress open",
"firebase:auth:emulator:dev": "firebase emulators:start --only auth --project mobility-feeds-dev",
"generate:api-types:output": "node scripts/generate-api-types.mjs",
"generate:api-types": "node scripts/generate-api-types.mjs src/app/services/feeds/types.ts",
"generate:gbfs-validator-types:output": "npm exec -- openapi-typescript ./external_types/GbfsValidator.yaml -o $npm_config_output_path && eslint $npm_config_output_path --fix",
"generate:gbfs-validator-types": "npm run generate:gbfs-validator-types:output -- --output-file=src/app/services/feeds/gbfs-validator-types.ts",
"generate:user-api-types:output": "npm exec -- openapi-typescript ./external_types/UserServiceAPI.yaml -o $npm_config_output_path && eslint $npm_config_output_path --fix",
"generate:user-api-types": "npm run generate:user-api-types:output -- --output-file=src/app/services/user-service-api-types.ts",
"new-worktree": "bash scripts/new-worktree.sh",
"remove-worktree": "bash scripts/remove-worktree.sh"
},
"resolutions": {
"tar": "^7.5.7"
},
"devDependencies": {
"@react-firebase/auth": "^0.2.10",
"@swc/core": "^1.15.8",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^13.5.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^30.0.0",
"@types/material-ui": "^0.21.12",
"@types/node": "^24.0.0",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@types/react-google-recaptcha": "^2.1.8",
"@types/react-redux": "^7.1.27",
"@types/react-window": "^2.0.0",
"@types/redux-saga": "^0.10.5",
"concurrently": "^9.2.1",
"cypress": "^15.18.1",
"dotenv": "^16.4.5",
"env-cmd": "^10.1.0",
"eslint": "^9.35.0",
"eslint-config-next": "^16.1.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"firebase-tools": "^15.3.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"msw": "^2.12.7",
"next-devtools-mcp": "^0.3.9",
"openapi-typescript": "^7.10.1",
"prettier": "^3.0.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "^8.58.1",
"wait-on": "^7.0.1"
},
"engines": {
"node": "24.x"
}
}