This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
78 lines (78 loc) · 2.73 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
76
77
78
{
"name": "@0x/coordinator-server",
"version": "1.0.5",
"description": "0x Coordinator reference server implementation",
"repository": "[email protected]:0xProject/0x-coordinator-server.git",
"license": "Apache-2.0",
"main": "ts/lib/src/index.js",
"types": "ts/lib/src/index.d.ts",
"scripts": {
"build": "tsc -p ts/tsconfig.json",
"watch": "tsc -w -p ts/tsconfig.json",
"prettier": "prettier --write 'ts/**/*.ts' --config .prettierrc",
"start": "node ts/lib/src/server.js",
"lint": "tslint --project ts --format stylish --exclude ts/src/schemas/**/*",
"test": "mocha --require source-map-support/register --require make-promises-safe ts/lib/test/**/*_test.js --timeout 10000 --exit"
},
"config": {
"mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic"
},
"devDependencies": {
"@0x/contracts-erc20": "^3.0.1",
"@0x/contracts-test-utils": "^5.0.0",
"@0x/dev-utils": "^3.0.1",
"@0x/migrations": "^5.0.1",
"@0x/tslint-config": "^4.0.0",
"@0x/web3-wrapper": "^7.0.1",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express-serve-static-core": "^4.16.11",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.7",
"@types/supertest": "^2.0.7",
"@types/websocket": "^0.0.39",
"chai": "^4.0.1",
"chai-as-promised": "^7.1.0",
"chai-bignumber": "^3.0.0",
"cross-env": "^5.2.0",
"dirty-chai": "^2.0.1",
"dotenv": "^6.2.0",
"download-cli": "^1.1.1",
"ethereum-types": "^3.0.0",
"ethereumjs-util": "^6.0.0",
"make-promises-safe": "^1.1.0",
"mocha": "^4.1.0",
"prettier": "^1.14.3",
"shx": "^0.3.2",
"supertest": "^3.4.2",
"tslint": "5.11.0",
"typescript": "3.0.1"
},
"dependencies": {
"@0x/assert": "^3.0.1",
"@0x/types": "^3.1.0",
"@0x/contract-addresses": "^4.0.0",
"@0x/contract-wrappers": "^13.1.0",
"@0x/json-schemas": "^5.0.1",
"@0x/order-utils": "^10.0.0",
"@0x/subproviders": "^6.0.1",
"@0x/typescript-typings": "^5.0.0",
"@0x/utils": "^5.1.0",
"@babel/polyfill": "^7.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"forever": "^0.15.3",
"http-status-codes": "^1.3.0",
"jsonschema": "^1.2.4",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.10",
"sqlite3": "^4.0.2",
"typeorm": "0.2.7",
"websocket": "^1.0.25"
},
"resolutions": {
"ganache-core": "2.6.0"
}
}