-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 893 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 893 Bytes
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
{
"name": "trustswap",
"private": true,
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"dev": "turbo run dev --parallel",
"dev:web": "pnpm -C apps/web dev",
"dev:indexer": "pnpm -C apps/indexer dev",
"deploy:contracts": "pnpm -C packages/contracts deploy",
"export:contracts": "pnpm -C packages/contracts export",
"tokenlist:build": "pnpm -C packages/tokenlists build",
"tokenlist:sign": "pnpm -C packages/tokenlists sign"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"turbo": "^2.1.0",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@9.12.3",
"dependencies": {
"@uniswap/lib": "2.0.1",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0"
}
}