-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "microsoft-engage-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server/index.js",
"server": "nodemon server/index.js",
"build": "cd client && npm install && npm run build",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"engines": {
"node": "14.2.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"material-ui-search-bar": "^1.0.0",
"mongoose": "^6.0.12",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}