-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "grudge",
"version": "0.1.0",
"private": true,
"description": "GRUDGE — your friends bet you'll fail. A social accountability game refereed by GenLayer Intelligent Contracts.",
"scripts": {
"dev": "pnpm --filter @grudge/web dev",
"build": "pnpm --filter @grudge/web build",
"start": "pnpm --filter @grudge/web start",
"lint": "pnpm --filter @grudge/web lint",
"typecheck": "pnpm --filter @grudge/web typecheck",
"test": "pnpm --filter @grudge/web test",
"e2e": "pnpm --filter @grudge/web e2e",
"contracts:lint": "make -C contracts lint",
"contracts:check": "make -C contracts check",
"contracts:typecheck": "make -C contracts typecheck",
"contracts:test": "make -C contracts test",
"prepare": "husky || true",
"check": ".venv/bin/genvm-lint lint contracts/grudge.py && .venv/bin/gltest contracts/test/test_grudge.py -v"
},
"devDependencies": {
"husky": "^9.1.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver",
"@prisma/client",
"prisma"
]
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.18.2"
}