forked from 0xProject/0x-starter-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "0xStarterProject",
"version": "0.1.0",
"description": "",
"scripts": {
"api": "npm run build; node ./lib/utils/server.js",
"build": "tsc",
"clean": "shx rm -rf _bundles lib",
"lint": "tslint src/**/*.ts",
"download_snapshot": "download --extract --strip 1 --out 0x_testrpc_snapshot ${npm_package_config_snapshot_url}",
"testrpc": "testrpc -p 8545 --networkId 50 --db ./0x_testrpc_snapshot -m \"${npm_package_config_mnemonic}\"",
"order_actions": "npm run build; node ./lib/tutorials/order_actions/index.js",
"relayer_actions": "npm run build; node ./lib/tutorials/relayer_actions/index.js",
"relayer_websocket:part1": "npm run build; node ./lib/tutorials/relayer_websocket/generate_initial_book.js; node ./lib/tutorials/relayer_websocket/index.js",
"relayer_websocket:part2": "npm run build; node ./lib/tutorials/relayer_websocket/generate_new_orders_with_interval.js"
},
"license": "Apache-2.0",
"config": {
"mnemonic": "concert load couple harbor equip island argue ramp clarify fence smart topic",
"snapshot_url": "https://s3.amazonaws.com/testrpc-shapshots/07d00cc515e0f9825b81595386b358593b7a3d6f.zip"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.1",
"@types/node": "^8.0.53",
"@types/websocket": "^0.0.37",
"download-cli": "^1.0.5",
"ethereumjs-testrpc": "^6.0.3",
"shx": "^0.2.2",
"tslint": "5.8.0",
"typescript": "2.7.1",
"web3-typescript-typings": "^0.10.0"
},
"dependencies": {
"0x.js": "0.33.0",
"@0xproject/connect": "^0.6.2",
"@0xproject/tslint-config": "^0.4.10",
"@0xproject/utils": "^0.4.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"web3": "^0.20.0",
"websocket": "^1.0.25"
}
}