forked from mericcintosun/alvinmunk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 786 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
{
"name": "alvinmunk",
"version": "0.1.0",
"private": true,
"description": "alvinmunk — Stellar Passport: a social proof-of-people reputation game on Stellar/Soroban",
"packageManager": "pnpm@9.7.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"contracts:build": "cd contracts && stellar contract build",
"contracts:test": "cd contracts && cargo test",
"contracts:fmt": "cd contracts && cargo fmt",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"playwright": "^1.61.0",
"prettier": "^3.3.3",
"turbo": "^2.0.9",
"typescript": "^5.5.4"
}
}