-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "masacalda-api",
"version": "1.0.0",
"description": "booking api for masacalda",
"main": "index.js",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"start": "node src/index.js",
"start:dev": "./node_modules/.bin/nodemon -L src/index.js",
"migrate": "./node_modules/.bin/sequelize db:migrate --env development --config ./src/configs/database.js",
"db:create-migration": "./node_modules/.bin/sequelize migration:create --env development --config ./src/configs/database.js"
},
"author": "Calin Tamas <[email protected]>",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"body-parser": "^1.18.3",
"dns-cache": "^2.0.0",
"express": "^4.16.4",
"jwt-simple": "^0.5.5",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"node-cache": "^4.2.0",
"node-schedule": "^1.3.2",
"node_hash": "^0.2.0",
"sequelize": "^4.41.2",
"sequelize-cli": "^5.3.0",
"slugify": "^1.3.3",
"socket.io": "^2.1.1"
},
"devDependencies": {
"nodemon": "^1.18.6"
}
}