-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 866 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 866 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
28
29
{
"name": "dapp-template",
"version": "1.0.0",
"private": true,
"engines": {
"node": "24"
},
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"test": "pnpm -r test",
"coverage": "pnpm -r coverage",
"lint": "pnpm -r lint",
"fix": "pnpm -r fix",
"clean": "rm -rf ./node_modules && pnpm -r clean",
"start_localnet": "RUST_LOG=off sui start --with-faucet --force-regenesis",
"faucet": "sui client faucet",
"seed:demo": "pnpm --filter @trustflow/scripts run seed:demo",
"seed:demo:dry": "pnpm --filter @trustflow/scripts run seed:demo:dry",
"seed:demo:env": "pnpm --filter @trustflow/scripts run seed:demo:env"
},
"devDependencies": {
"@mysten/prettier-plugin-move": "^0.3.1",
"prettier": "^3.6.2"
},
"author": "",
"license": "ISC",
"description": ""
}