-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "uptimechekernew",
"version": "0.0.1",
"description": "Practice",
"main": "./server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "babel-node -- ./server/index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0"
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"concurrently": "^4.1.2",
"connect-redis": "^4.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.0",
"redis": "^2.8.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"socket.io": "^2.3.0",
"twilio": "^3.35.1",
"validator": "^11.1.0"
}
}