-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.89 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
{
"name": "fridgebook",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080/",
"dependencies": {
"@fullcalendar/core": "^4.4.0",
"@fullcalendar/daygrid": "^4.4.0",
"@fullcalendar/interaction": "^4.4.0",
"@fullcalendar/react": "^4.4.0",
"@fullcalendar/timegrid": "^4.4.0",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.19.2",
"concurrently": "^5.2.0",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"firebase": "^7.14.3",
"if-env": "^1.0.4",
"moment": "^2.25.3",
"mongoose": "^5.9.10",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"react": "^16.13.1",
"react-autosuggest": "^10.0.2",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-fade-in": "^1.0.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"reactjs-popup": "^1.5.0",
"reactstrap": "^8.4.1",
"sequelize": "^5.21.7",
"sweetalert2": "^9.10.12"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"node server.js\" \"react-scripts start\"",
"client": "cd src && npm run start",
"seed": "node scripts/seedDB.js",
"build": "npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix 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"
]
}
}