-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "web_starter_project",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"private": true,
"dependencies": {
"@craco/craco": "^6.4.3",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"auth0-js": "^9.19.0",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.1",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.1",
"keycode": "^2.2.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.10.0",
"mongoose": "^6.2.0",
"nodemailer": "^6.7.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-map-gl": "^7.0.19",
"react-redux": "^7.2.8",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"striptags": "^3.2.0",
"styled-components": "^5.3.5",
"webpack-bundle-analyzer": "^4.5.0"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
},
"homepage": "https://your-project-name.herokuapp.com",
"heroku-run-build-script": true,
"scripts": {
"start": "NODE_ENV=production node express.js",
"build": "react-scripts build",
"analyze": "craco build",
"client": "react-scripts start",
"server": "nodemon express.js",
"dev": "concurrently --kill-others-on-fail \"npm run server \" \"npm run client\" "
},
"eslintConfig": {
"extends": "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"
]
}
}