-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "mern",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"description": "",
"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",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.0.1",
"chart.js": "^3.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.16.3",
"express-pino-logger": "^6.0.0",
"if-env": "^1.0.4",
"jquery": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"mdbreact": "^5.0.2",
"moment": "^2.29.1",
"mongoose": "^5.3.16",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.0",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"twilio": "^3.62.0",
"twilio-video": "^2.14.0"
}
}