-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "0x-order-watcher",
"version": "0.1.0",
"description": "0x Watcher",
"author": "0xbakuchi",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "",
"dev": "nodemon -r dotenv/config src/index.ts | pino-pretty",
"watch": "tsc -w",
"fix": "tslint --project . --format stylish --fix && yarn prettier",
"prettier": "prettier --write --config .prettierrc \"src/**/*.ts\"",
"start": "node -r dotenv/config lib/index.js",
"lint": "tslint --project . --format stylish && yarn prettier:ci"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.7.18",
"nodemon": "^2.0.19",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
},
"dependencies": {
"@0x/api-utils": "0.0.2",
"@0x/assert": "3.0.34",
"@0x/asset-swapper": "16.66.3",
"@0x/contract-wrappers": "^13.20.8",
"@0x/contracts-zero-ex": "0.36.3",
"@0x/fast-abi": "^0.0.5",
"@0x/json-schemas": "6.4.4",
"@0x/neon-router": "^0.3.5",
"@0x/order-utils": "10.4.28",
"@0x/protocol-utils": "11.16.3",
"@0x/quote-server": "8.0.0",
"@0x/subproviders": "6.6.5",
"@0x/token-metadata": "0.1.17",
"@0x/types": "3.3.6",
"@0x/utils": "6.5.3",
"dotenv": "^16.0.2",
"ethers": "^5.7.1",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"pg": "8.5.x",
"pino": "^8.5.0",
"typeorm": "0.2.x"
}
}