-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 707 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 707 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
{
"name": "jwt-demo",
"version": "0.0.0",
"private": true,
"author": "Roman Chvalbo",
"scripts": {
"server": "node app.js",
"client": "cd client && npm start",
"startboth": "concurrently \"nodemon app.js\" \"npm run client\"",
"start": "node app.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "~1.18.2",
"concurrently": "^3.6.1",
"cookie-parser": "~1.4.3",
"express": "~4.15.5",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.2",
"mysql2": "^1.6.1",
"nodemon": "^1.17.3",
"react-router-dom": "^4.3.1",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0",
"uuid": "^3.2.1"
}
}