-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "react-itinerary-planner",
"version": "0.1.0",
"private": true,
"dependencies": {
"@popperjs/core": "^2.10.2",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"bootstrap": "^5.1.3",
"concurrently": "^6.3.0",
"cors": "^2.8.5",
"font-awesome": "^4.7.0",
"geolib": "^3.3.3",
"history": "^5.1.0",
"leaflet": "^1.7.1",
"pexels": "^1.3.0",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-icons": "^4.3.1",
"react-leaflet": "^3.2.2",
"react-loader-spinner": "^4.0.0",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"react-simple-star-rating": "^4.0.0",
"recharts": "^2.1.6",
"simplebar-react": "^2.3.6",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "npm run clientStart",
"dev": "concurrently \"cd backend && npm run start\" \"npm run clientStart\"",
"devMac": "concurrently \"cd backend && npm run start\" \"npm run clientStartMac\"",
"clientStart": "react-scripts start",
"clientStartMac": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": "off",
"no-useless-concat": "off"
}
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}