-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "sushi-relayer",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"build": "tsc",
"start": "tsc && node dist/index.js",
"copy-remote": "tsc && node dist/database/copy-remote.js",
"forever-polygon": "git fetch --all && git reset --hard origin/polygon-deployment && true > error.log && true > out.log && tsc && forever start forever/polygon.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@ethersproject/experimental": "^5.3.0",
"@sushiswap/core-sdk": "1.0.0-canary.57",
"@sushiswap/default-token-list": "^22.4.4",
"@sushiswap/limit-order-sdk": "1.0.0-canary.43",
"@sushiswap/prettier-config": "^0.1.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/websocket": "^1.0.2",
"axios": "^0.21.1",
"chai": "^4.3.4",
"dotenv": "^9.0.0",
"ethers": "^5.1.4",
"mocha": "^8.4.0",
"mongoose": "^5.13.0",
"mongoose-long": "^0.3.2",
"prettier": "^2.5.1",
"rxjs": "^7.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"websocket": "^1.0.34"
}
}