-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 835 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 835 Bytes
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
{
"name": "isomorphic-router",
"version": "1.0.0",
"description": "isomorphic router example with authentication and webpack",
"main": "server.js",
"scripts": {
"server": "nodemon -r esm server",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"update": "concurrently \"npm install\" \"npm install --prefix client\" "
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.6.0",
"mongodb": "^3.6.9",
"mongoose": "^5.12.12",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
}
}