-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "eventing",
"version": "1.0.0",
"description": "Facebook Developer Circle Hackaton July 2018",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"refresh": "sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"author": "Isabella Chen - Leonardo Di Vittorio - Marlon Becker - Marco Antonio Ghiani",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoantonioghiani01/eventing/issues"
},
"homepage": "https://github.com/marcoantonioghiani01/eventing#readme",
"devDependencies": {
"eslint-config-airbnb-standard": "1.6.6",
"nodemon": "^1.17.5"
},
"dependencies": {
"@koa/cors": "2.2.1",
"cross-fetch": "^2.2.2",
"dotenv": "6.0.0",
"koa": "2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-logger": "3.2.0",
"koa-router": "7.4.0",
"pg": "7.4.3",
"request": "^2.87.0",
"sequelize": "4.38.0",
"sequelize-cli": "4.0.0"
}
}