-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "transaction-watch-dog",
"version": "1.0.0",
"description": "Ruling system that monitors the Ethereum blockchain and make the right decision based on a given rule set",
"main": "index.js",
"scripts": {
"start": "node cluster.js",
"dev": "cross-env NODE_PATH=. NODE_ENV=development nodemon",
"test": "npm run test:all",
"test:all": "npm run test:unit && npm run test:features",
"test:unit": "cross-env NODE_PATH=. NODE_ENV=test mocha --file=test/setup.js test/unit/**/*.spec.js",
"test:features": "cross-env NODE_PATH=. NODE_ENV=test mocha --file=test/setup.js test/features/**/*.spec.js",
"coverage": "cross-env NODE_PATH=. NODE_ENV=test nyc mocha --file=test/setup.js test/unit/**/*.spec.js",
"lint": "eslint {src,test,config}/**/*.js",
"sequelize": "cross-env NODE_PATH=. sequelize",
"console": "cross-env NODE_PATH=. node src/interfaces/console/index.js",
"heroku-postbuild": "NODE_ENV=production NODE_PATH=. sequelize db:migrate --url=$DATABASE_URL",
"pm2": "pm2"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/didox2/transaction-watch-dog.git"
},
"keywords": [
"Node",
"Express",
"Infura",
"Ethers"
],
"author": "Ditmar Vladislavov",
"license": "ISC",
"bugs": {
"url": "https://github.com/didox2/transaction-watch-dog/issues"
},
"homepage": "https://github.com/didox2/transaction-watch-dog#readme",
"dependencies": {
"awilix": "^7.0.3",
"awilix-express": "^7.0.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"ethers": "^5.6.5",
"express": "^4.18.1",
"express-status-monitor": "^1.3.4",
"http-status": "^1.5.1",
"log4js": "^6.4.6",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"pm2": "^5.2.0",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1",
"structure": "^2.0.1",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-change": "^2.1.2",
"chance": "^1.1.8",
"dirty-chai": "^2.0.1",
"factory-girl": "^5.0.4",
"listr": "^0.14.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"replace-in-file": "^6.3.2",
"supertest": "^6.2.3",
"supertest-as-promised": "^4.0.2"
}
}