-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.25 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
42
43
{
"name": "node-js-jwt-auth",
"version": "1.0.0",
"description": "Rent app react/express",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"ssh": "ssh [email protected]",
"server": "DEBUG=socket.io:socket node server.js",
"client": "npm run start --prefix client",
"client:install": "npm install -prefix client",
"client:build": "npm run build -prefix client",
"develop": "cross-env NODE_ENV=development && concurrently \"npm run server\" \"npm run client\"",
"deploy": "git pull && concurrently \"npm run install\" \"npm run client:install\" \"npm run client:build\" && reboot"
},
"keywords": [
"node.js",
"jwt",
"authentication",
"express",
"mysql"
],
"author": "Aron Bergman <[email protected]>",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.15.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"consola": "^2.12.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"sequelize": "^5.21.3",
"socket.io": "^2.3.0",
"uuid": "^3.4.0"
}
}