-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.25 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
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
{
"name": "theroute",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject"
},
"dependencies": {
"@mapbox/mapbox-gl-directions": "^4.3.1",
"@mapbox/mapbox-gl-geocoder": "^5.0.3",
"@mapbox/search-js-react": "^1.0.0-beta.22",
"axios": "^1.7.7",
"fluent-ffmpeg": "^2.1.3",
"jwt-decode": "^4.0.0",
"mapbox-gl": "^3.8.0",
"react": "^18.3.1",
"react-burger-menu": "^3.0.9",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-map-gl": "^7.1.7",
"react-native-dotenv": "^3.4.11",
"react-native-video": "^6.7.0",
"react-router-dom": "^6.28.0",
"react-scripts": "^5.0.1",
"recharts": "^2.13.3",
"text-encoding": "^0.7.0",
"util": "^0.12.5",
"web-vitals": "^4.2.3",
"webpack": "^5.95.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"axios-mock-adapter": "^2.1.0",
"babel-jest": "^29.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-mock": "^29.7.0",
"jsdom": "^25.0.1"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!axios)"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy",
"\\.mp4$": "<rootDir>/__mocks__/fileMock.js",
"\\.(jpg|jpeg|png|gif|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [],
"author": "",
"license": "ISC"
}