-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "unitrade-service",
"version": "1.0.0",
"description": "UniTrade service that allows \"Executors\" to \"Farm\" limit orders on UniSwap",
"main": "server.js",
"repository": "https://github.com/UniTradeApp/unitrade-service.git",
"author": "david@aktarytech.com",
"license": "MIT",
"private": true,
"scripts": {
"start:dev": "yarn build && yarn start",
"build": "tsc",
"start": "DEBUG=\"unitrade-service*\" node dist/index.js",
"build:fresh": "yarn clean && yarn build",
"clean": "rimraf dist .tsbuildinfo",
"debug": "yarn build && node --inspect-brk=5859 dist/index.js",
"dev": "nodemon",
"lint": "eslint src/**/* --ext .ts",
"test": "export NODE_ENV=test && mocha --timeout 10000 \"test/**/*.test.{js,ts}\" -r ts-node/register/transpile-only"
},
"dependencies": {
"@types/node-fetch": "^2.5.7",
"@uniswap/sdk": "^3.0.3-beta.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"web3": "^1.2.11",
"web3-eth-contract": "^1.2.11"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/sinon": "^9.0.5",
"@types/sinon-chai": "^3.2.4",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"ethereum-waffle": "^3.1.0",
"ethers": "^5.0.12",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}