-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 817 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 817 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
{
"name": "jwt-login-framework-tutorial",
"version": "1.0.0",
"description": "jwt login framework",
"main": "server.js",
"engines": {
"node": "16.18.0",
"npm": "8.19.2"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run sever\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefic client"
},
"author": "web-presence llc",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"concurrently": "^7.1.0",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.3",
"path": "^0.12.7"
}
}