-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && yarn install",
"build": "cd client && yarn build",
"heroku-postbuild": "yarn build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.9"
},
"dependencies": {
"@material-ui/core": "^3.9.1",
"@pusher/chatkit-client": "^1.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chart.js": "^2.7.3",
"cors": "^2.8.5",
"date-fns": "^2.0.0-alpha.27",
"express": "^4.16.3",
"express-promise-router": "^3.0.3",
"express-router-promise": "^1.0.7",
"if-env": "^1.0.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mathjs": "^5.4.2",
"moment": "^2.24.0",
"mongoose": "^5.4.10",
"morgan": "^1.9.1",
"nodemon": "^1.18.9",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-chartjs-2": "^2.7.4",
"react-flexbox-grid": "^2.1.2",
"react-native": "^0.58.4"
}
}