-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "React-Express-First-App",
"version": "1.0.0",
"description": "Starter app with React frontend and NodeJS backend with MongoDB",
"main": "index.js",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm start",
"start": "concurrently - kill-others \"npm run server\" \"npm run client\""
},
"author": "Baljit Singh",
"keywords": [],
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"errorhandler": "^1.5.0",
"express": "~4.16.0",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"mongoose": "^5.4.6",
"morgan": "~1.9.0",
"nodemon": "^1.18.9",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"bootstrap": "^4.0.0",
"compression": "^1.7.3",
"connect-multiparty": "^2.2.0",
"helmet": "^3.15.0",
"react": "^16.7.0",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.7.0",
"react-icons": "^3.3.0",
"react-popper": "^0.9.2",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"reactstrap": "^5.0.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0"
}
}