This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 264
/
package.json
62 lines (62 loc) · 2.37 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
{
"name": "0x-launch-kit",
"version": "0.3.1",
"description": "0x Relayer",
"repository": "git@github.com:0xProject/0x-launch-kit-backend.git",
"author": "Leonid Logvinov <logvinov.leon@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"clean": "shx rm -rf ts/lib",
"prettier": "yarn prettier:js && yarn prettier:ts",
"build": "yarn build:ts && shx rm -rf js && shx cp -r ts/lib/ js",
"prettier:js": "prettier --write 'js/**/*.js' --config .prettierrc",
"start:js": "node -r dotenv/config js/index.js",
"build:ts": "tsc -p ts/tsconfig.json",
"watch:ts": "tsc -w -p ts/tsconfig.json",
"prettier:ts": "prettier --write 'ts/**/*.ts' --config .prettierrc",
"start:ts": "node -r dotenv/config ts/lib/index.js",
"start:service:http": "node -r dotenv/config ts/lib/runners/http_service_runner.js",
"start:service:ws": "node -r dotenv/config ts/lib/runners/websocket_service_runner.js",
"start:service:order_watcher": "node -r dotenv/config ts/lib/runners/order_watcher_service_runner.js",
"lint:ts": "tslint --project ts --format stylish"
},
"devDependencies": {
"@0x/tslint-config": "^4.0.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.137",
"@types/web3": "^1.0.19",
"@types/web3-provider-engine": "^14.0.0",
"@0x/typescript-typings": "^5.0.0",
"@0x/types": "^3.0.0",
"@types/ws": "^6.0.2",
"ethereum-types": "^2.1.4",
"prettier": "^1.18.2",
"shx": "^0.3.2",
"tslint": "^5.19.0",
"typescript": "3.0.1"
},
"dependencies": {
"@0x/assert": "^3.0.0",
"@0x/connect": "^6.0.0",
"@0x/json-schemas": "^5.0.0",
"@0x/mesh-rpc-client": "^7.1.0-beta-0xv3",
"@0x/order-utils": "^8.5.0-beta.3",
"@0x/utils": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"forever": "^1.0.0",
"http-status-codes": "^1.3.2",
"jsonschema": "^1.2.4",
"lodash": "^4.17.15",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.1.0",
"typeorm": "0.2.18",
"ws": "^7.1.2"
}
}