-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "final-project",
"version": "0.1.0",
"engines": {
"node": "10.15.0"
},
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^4.0.2",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"cors-anywhere": "^0.4.1",
"date-fns": "^1.30.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"gatsby-plugin-sass": "^2.0.11",
"home-or-tmp": "^3.0.0",
"is-empty": "^1.2.0",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"location-picker": "^1.1.1",
"mongoose": "^5.5.4",
"node-fetch": "^2.5.0",
"node-sass": "^4.12.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.6",
"react-datepicker": "^2.5.0",
"react-dates": "^20.1.0",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.0",
"reactstrap": "^8.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"save": "^2.3.3",
"serverless-http": "^2.0.2",
"validator": "^10.11.0",
"yelp-api": "^1.0.3",
"yelp-fusion": "^3.0.0"
},
"scripts": {
"client-install": "npm install --prefix client",
"heroku-start": "node ./server/server.js",
"server": "nodemon ./server/server.js",
"client": "react-scripts start",
"start": "node index.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"proxy": "http://localhost:5000",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"nodemon": "^1.18.11"
}
}