-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "efx-trustless-data",
"version": "1.0.0",
"description": "Logs all Fill events and settelement transactions and provide and HTTP API to query the data.",
"scripts": {
"start": "node src/index.js",
"develop": "env-cmd .env nodemon src/index.js",
"test": "env-cmd .env mocha ./tests/index.js --timeout 1200000000",
"test:watch": "env-cmd .env nodemon --exec 'mocha ./tests/index.js --timeout 1200000000'"
},
"license": "MIT",
"dependencies": {
"@0x/contract-wrappers": "^9.1.8",
"@newrelic/native-metrics": "^4.1.0",
"bignumber.js": "^9.0.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-validator": "^6.1.1",
"lodash": "^4.17.13",
"moment": "^2.23.0",
"mongodb": "^3.1.10",
"mongoose": "^5.7.5",
"newrelic": "^5.11.0",
"node-cache": "^4.2.1",
"node-cron": "^2.0.3",
"request-promise": "^4.2.2",
"sleep-promise": "^8.0.1",
"validate.io-timestamp": "^1.0.2",
"web3": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"env-cmd": "^8.0.2",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"standard": "^13.1.0",
"supertest": "^4.0.2"
}
}