-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
58 lines (58 loc) · 2.09 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
{
"name": "0x-event-pipeline-evm",
"version": "0.0.1",
"description": "A node.js app for pulling 0x event info to inform things like staking.",
"license": "Apache-2.0",
"scripts": {
"build": "yarn tsc -b",
"dev": "nodemon -r dotenv/config src/index.ts | pino-pretty",
"start": "node lib/src/index.js",
"test": "yarn jest",
"rebuild_and_test": "run-s build test:all",
"test:all": "run-s test test:db",
"test:circleci": "yarn test:coverage",
"prettier": "prettier --write 'src/**/*.{ts,tsx,json,md}'",
"prettier:ci": "prettier --list-different 'src/**/*.{ts,tsx,json,md}'",
"test:coverage": "nyc npm run test:all --all && yarn coverage:report:lcov",
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
"clean": "rm -rf lib",
"lint": "eslint ."
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.1.1",
"@types/node": "^8.0.29",
"@types/node-cron": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.6.2",
"jest": "^29.5.0",
"make-promises-safe": "^5.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"ts-jest": "^29.1.1",
"ts-node": "3.3.0"
},
"dependencies": {
"@0x/api-utils": "^0.0.1",
"@0x/dev-utils": "^5.0.3",
"@0x/order-utils": "^10.4.28",
"@0x/subproviders": "^8.0.1",
"@types/express": "^4.17.13",
"@types/pino": "^6.3.11",
"dotenv": "^8.2.0",
"kafkajs": "^2.1.0",
"node-cron": "^2.0.3",
"pg": "^8.5.1",
"pino": "^8.12.1",
"prom-client": "^13.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.20",
"typescript": "4",
"web3": "^1.9.0"
}
}