-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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": "rebalancer",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/reservoirprotocol/rebalancer.git",
"author": "Uneven Labs",
"license": "MIT",
"scripts": {
"build": "yarn workspaces run build",
"start": "node packages/server/dist/app.js",
"dev": "nodemon src/index.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@ponder/utils": "^0.2.2",
"axios": "^1.7.8",
"dd-trace": "^5.24.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fastify": "^5.1.0",
"redis": "^4.7.0",
"viem": "^2.21.40"
},
"workspaces": [
"packages/*"
],
"private": true
}