-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 805 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 805 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
32
33
{
"name": "rest-api",
"version": "1.0.0",
"description": "rest api",
"main": "server.js",
"engines": {
"node": "10.11.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "DB_HOST=localhost DB_SCHEMA=node DB_USER=root DB_PASSWORD=null node server.js",
"dev": "nodemon server.js"
},
"author": "Emerson",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"jsonwebtoken": "^8.4.0",
"multer": "^1.4.1",
"mysql2": "^1.6.4",
"node-fetch": "^2.3.0",
"sequelize": "^4.42.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"websocket": "^1.0.28"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}