-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·82 lines (82 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·82 lines (82 loc) · 1.99 KB
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
73
74
75
76
77
78
79
80
81
82
{
"name": "@swashapp/scompute-client",
"version": "0.0.0-semantic-release",
"description": "",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swashapp/scompute-client"
},
"main": "build/main/index.js",
"outDir": "build",
"type": "commonjs",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"files": [
"build/main/*",
"!server/*",
"!docker/*",
"!**/*.spec.*",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"swash-order-router": "github:swashapp/smart-order-router#42085ae5743e144bb769f0f0465cf3bd148f375f",
"web3": "^1.7.5"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"eslint": "^7.20.0",
"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": "^29.1.1",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-jest": "^29.0.2",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"jest": {
"testTimeout": 30000,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}