-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
{
"name": "zeazdev-omega",
"version": "1.0.0",
"description": "ZeaZDev FiGaTect Super-App - Production-Grade DeFi, GameFi & FinTech Integration",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"install:all": "pnpm install",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"db:migrate": "cd apps/backend && pnpm prisma migrate dev",
"db:generate": "cd apps/backend && pnpm prisma generate",
"contracts:compile": "cd packages/contracts && pnpm hardhat compile",
"contracts:deploy": "cd packages/contracts && pnpm hardhat run scripts/deploy.ts",
"compliance:check": "bash scripts/validate-compliance.sh",
"sbom:generate": "bash scripts/generate-sbom.sh",
"reproducible:build": "bash scripts/reproducible-build.sh"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.6.0",
"@types/node": "^24.10.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.11.0",
"pnpm": {
"overrides": {
"tmp@<0.2.0": ">=0.2.3",
"cookie@<0.7.0": ">=0.7.2"
}
}
}