-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "@defi-platform/root",
"version": "1.0.0",
"private": true,
"description": "Multi-chain DeFi platform with AI agent orchestration",
"workspaces": [
"packages/*",
"packages/microservices/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"deploy": "turbo run deploy",
"infra:plan": "cd infrastructure && terraform plan",
"infra:apply": "cd infrastructure && terraform apply",
"contracts:compile": "cd contracts && npx hardhat compile",
"contracts:deploy": "cd contracts && npx hardhat run scripts/deploy.ts"
},
"devDependencies": {
"@types/node": "^20.10.0",
"turbo": "^1.11.0",
"typescript": "^5.3.0",
"prettier": "^3.1.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}