forked from bepronetwork/microservice-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "microservice-github",
"version": "1.0.0",
"description": "Microservice that connects github information with the Smart Contract of the Network",
"private": true,
"main": "bin/www",
"engines": {
"node": "14"
},
"scripts": {
"prestart": "npm run migrate",
"dev": "nodemon ./bin/www",
"start": "node ./bin/www",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@octokit/auth-app": "^3.6.1",
"axios": "^0.21.4",
"bepro-js": "github:bepronetwork/bepro-js#master",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"date-fns": "^2.25.0",
"dayjs": "^1.10.6",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"morgan": "^1.10.0",
"octokit": "^1.0.5",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"sequelize": "~6.6.2",
"sequelize-cli": "~6.2.0",
"web3": "^2.0.0-alpha.1"
}
}