forked from enliven17/talos-stellar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 697 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 697 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
{
"name": "talos-protocol",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "pnpm --dir web dev",
"build": "pnpm --dir web build",
"lint": "pnpm --dir web lint",
"web:install": "pnpm --dir web install",
"web:db:push": "pnpm --dir web db:push",
"web:db:seed": "pnpm --dir web db:seed",
"stack:up": "bash scripts/local-stack.sh up",
"stack:down": "bash scripts/local-stack.sh down",
"stack:logs": "bash scripts/local-stack.sh logs",
"stack:reset": "bash scripts/local-stack.sh reset",
"test:fixtures": "pnpm --dir contracts test:fixtures"
},
"dependencies": {
"next": "16.2.2"
},
"engines": {
"node": ">=20"
}
}