forked from 0xProject/0x-starter-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.89 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
{
"name": "0x-starter-project",
"version": "4.0.0",
"description": "0x Starter Project",
"scripts": {
"lint": "tslint --format stylish --project . --exclude **/src/generated_contract_wrappers/**/*",
"watch": "cross-env tsc -w",
"build": "cross-env tsc",
"clean": "shx rm -rf lib",
"scenario:all": "cross-env yarn build && node ./lib/scenarios/all.js",
"scenario:fill_0x_api_swap": "cross-env yarn build && node ./lib/scenarios/fill_0x_api_swap.js",
"scenario:fill_erc20_limit_order": "cross-env yarn build && node ./lib/scenarios/fill_erc20_limit_order.js",
"scenario:fill_erc20_rfq_order": "cross-env yarn build && node ./lib/scenarios/fill_erc20_rfq_order.js",
"scenario:fill_erc20_rfq_order_with_maker_order_signer": "cross-env yarn build && node ./lib/scenarios/fill_erc20_rfq_order_with_maker_order_signer.js",
"scenario:fill_erc20_otc_order": "cross-env yarn build && node ./lib/scenarios/fill_erc20_otc_order.js",
"scenario:fill_erc20_taker_signed_otc_order": "cross-env yarn build && node ./lib/scenarios/fill_erc20_taker_signed_otc_order.js",
"scenario:execute_metatransaction_fill_rfq_order": "cross-env yarn build && node ./lib/scenarios/execute_metatransaction_fill_rfq_order.js",
"scenario:cancel_pair_limit_orders": "cross-env yarn build && node ./lib/scenarios/cancel_pair_limit_orders.js",
"scenario:transform_erc20": "cross-env yarn build && node ./lib/scenarios/transform_erc20.js",
"mint_test_zrx": "cross-env yarn build && node ./lib/util_scripts/mint_test_zrx.js"
},
"config": {},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@0x/connect": "^6.0.0",
"@0x/contract-wrappers": "^13.18.2",
"@0x/contracts-erc721": "^3.0.0",
"@0x/migrations": "^8.1.10",
"@0x/protocol-utils": "^1.9.4",
"@0x/subproviders": "^6.6.0",
"@0x/utils": "^6.4.4",
"@0x/web3-wrapper": "^7.6.1",
"axios": "^0.25.0",
"axios-mock-adapter": "^1.20.0",
"body-parser": "^1.19.0",
"cli-table": "^0.3.1",
"copyfiles": "^2.1.1",
"dotenv": "^16.0.0",
"ethereumjs-util": "^7.1.3",
"express": "^4.17.1",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.15",
"ora": "^3.4.0",
"run-s": "^0.0.0",
"websocket": "^1.0.29"
},
"devDependencies": {
"@0x/tslint-config": "^3.0.1",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.137",
"@types/websocket": "^0.0.40",
"cross-env": "^5.1.4",
"download-cli": "^1.0.5",
"ethereum-types": "^3.0.0",
"ganache-cli": "6.6.0",
"make-promises-safe": "^5.0.0",
"npm-run-all": "^4.1.2",
"shx": "^0.3.2",
"tslint": "5.19.0",
"typescript": "3.5.3"
}
}