-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.67 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
65
66
67
68
69
70
71
72
{
"name": "@swashapp/dpp-client",
"version": "0.0.0-semantic-release",
"description": "",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swashapp/dpp-client.git"
},
"main": "build/main/index.js",
"outDir": "build",
"type": "commonjs",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"files": [
"build/main/*",
"!server/*",
"!**/*.spec.*",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"cross-fetch": "3.1.5",
"ethers": "5.7.1",
"jsonwebtoken": "9.0.0",
"tsc": "2.0.4",
"typescript": "4.9.5",
"@uniswap/router-sdk": "1.0.5",
"swash-order-router": "github:swashapp/smart-order-router#42085ae5743e144bb769f0f0465cf3bd148f375f",
"jest": "26.6.3",
"ts-jest": "26.5.2",
"web3": "1.7.5"
},
"devDependencies": {
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"eslint": "7.20.0",
"prettier": "2.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-unused-imports": "1.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.test\\.ts$",
"transform": {
".+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}