-
-
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) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 865 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": "workspace",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "sh -c 'rm -f package-lock.json yarn.lock; case \"$npm_config_user_agent\" in pnpm/*) ;; *) echo \"Use pnpm instead\" >&2; exit 1 ;; esac'",
"build": "pnpm run typecheck && pnpm -r --if-present run build",
"typecheck:libs": "tsc --build",
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./apps/**\" --filter \"./scripts\" --if-present run typecheck",
"test:anchor": "ts-mocha -p ./tsconfig.anchor.json -t 1000000 tests/**/*.ts"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.30.0",
"@solana/web3.js": "^1.95.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"chai": "^4.3.0",
"mocha": "^10.0.0",
"prettier": "^3.8.3",
"ts-mocha": "^10.0.0",
"typescript": "~5.9.3"
}
}