-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 931 Bytes
/
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
{
"name": "rest-api-node-express-sequelise",
"version": "1.0.0",
"description": "A Rest API with node, express and sequelise",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmartNfor/REST-API-Node-Express-Sequelise.git"
},
"keywords": [
"Node Js",
"Express",
"Sequelise"
],
"author": "Nfor Esperance",
"license": "MIT",
"bugs": {
"url": "https://github.com/SmartNfor/REST-API-Node-Express-Sequelise/issues"
},
"homepage": "https://github.com/SmartNfor/REST-API-Node-Express-Sequelise#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.3",
"mysql2": "^2.1.0",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}