-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.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
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
{
"name": "seeker",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.20",
"@reduxjs/toolkit": "^2.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/mapbox-gl": "^3.1.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"axios": "^1.7.2",
"babel-loader": "^9.1.3",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"drag-drop-file-tk": "^1.0.8",
"express": "^4.18.2",
"hashids": "^2.3.0",
"helmet": "^7.1.0",
"idb": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"mapbox-gl": "^3.3.0",
"maplibre-gl": "^4.4.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"os": "^0.1.2",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.3.1",
"react-icons": "^5.0.1",
"react-map-gl": "^7.1.7",
"react-redux": "^9.1.0",
"react-router-dom": "^6.23.0",
"react-scripts": "^5.0.1",
"react-social-icons": "^6.16.0",
"sass": "^1.77.6",
"sequelize": "^6.37.3",
"sitemap": "^8.0.0",
"toastify-js": "^1.12.0",
"ts-node": "^10.9.2",
"uuidv4": "^6.2.13",
"web-vitals": "^2.1.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"start": "set PORT=3000 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start:be:dev": "nodemon --env-file .env server/index.js",
"start:be:prod": "set NODE_ENV=production && nodemon --env-file .env.production server/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"generate-sitemap": "node scripts/generate-sitemap.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-strongloop": "^2.1.0"
}
}