-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.02 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
{
"private": true,
"scripts": {
"postinstall": "git submodule update --init",
"typecheck:ark-rebalancer": "cd packages/ark-rebalancer && venv/bin/mypy ark_rebalancer.py",
"start:ark-rebalancer": "cd packages/ark-rebalancer && venv/bin/python ark_rebalancer.py",
"dev": "turbo run dev --concurrency=100",
"prebuild": "turbo run prebuild --cache-dir=.turbo",
"build": "turbo run build --cache-dir=.turbo",
"lint": "turbo run lint --cache-dir=.turbo",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test --cache-dir=.turbo",
"test:integration": "turbo run test:integration --cache-dir=.turbo",
"check-circular": "turbo run check-circular --cache-dir=.turbo",
"cicheck": "turbo run cicheck --cache-dir=.turbo --filter=./packages/* && pnpm run coverage:total",
"cicheck:dev": "turbo run cicheck --cache-dir=.turbo --output-logs=new-only --concurrency=100% --continue",
"graph": "pnpm dlx nx graph",
"format": "prettier --check \"./**/*.{ts,tsx,js,jsx,json,sol}\"",
"format:fix": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,sol}\"",
"coverage": "turbo run coverage --cache-dir=.turbo"
},
"devDependencies": {
"@summerfi/eslint-config": "workspace:*",
"@summerfi/typescript-config": "workspace:*",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.2",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-extended": "4.0.2",
"lcov": "1.16.0",
"madge": "7.0.0",
"nyc": "17.0.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "4.0.0",
"prettier-plugin-solidity": "1.3.1",
"ts-jest": "29.1.2",
"tsc-alias": "1.8.8",
"turbo": "1.13.2",
"typescript": "5.4.5",
"zx": "8.0.1"
},
"name": "summerfi-monorepo",
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=20"
},
"dependencies": {
"bignumber.js": "9.1.2",
"viem": "2.9.19",
"zod": "3.22.4"
}
}