-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "@kiroboio/flow-plugins",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:kiroboio/ki-flow-plugins.git",
"author": "Brendons Karelis <[email protected]>",
"license": "MIT",
"scripts": {
"commit": "git cz",
"build": "tsc -p tsconfig.build.json",
"script": "ts-node --project tsconfig.json",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register \"src/**/*.test.ts\"",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@types/chai": "^4.3.8",
"@types/lodash": "^4.14.198",
"@types/mocha": "^10.0.2",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"semantic-release": "^22.0.6",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"@uniswap/router-sdk": "^1.6.0",
"@uniswap/sdk-core": "^4.0.7",
"@uniswap/smart-order-router": "^3.16.23",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"node-cache": "^5.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}