-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "traderjoe-price-feed",
"type": "module",
"version": "1.0.0",
"description": "",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "tsc",
"start:dev": "dotenv -c development -- pnpm exec nodemon -r dotenv/config --esm src/index.ts | pnpm exec pino-pretty",
"test": "dotenv -c test -- bash -c 'jest'",
"test:watch": "dotenv -c test -- bash -c 'jest --watch'",
"test:anvil": "dotenv -c test -- bash -c 'anvil --fork-url \"$ANVIL_FORK_URL\" --chain-id \"$CHAIN_ID\" --fork-block-number \"$ANVIL_FORK_BLOCK_NUMBER\"'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/connect-timeout": "^0.0.37",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/node": "^20.4.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"dotenv-cli": "^7.3.0",
"eslint": "8.46.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.0",
"prettier": "3.0.1",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@traderjoe-xyz/sdk": "^4.1.0",
"@traderjoe-xyz/sdk-core": "^1.1.0",
"@traderjoe-xyz/sdk-v2": "^2.1.4",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"http-status-codes": "^2.2.0",
"pino": "^8.15.0",
"pino-http": "^8.4.0",
"viem": "^1.7.0",
"zod": "^3.22.2"
}
}