-
-
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) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.03 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
{
"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:oracle": "pnpm --filter mappers-oracle exec tsc --noEmit",
"typecheck": "pnpm run typecheck:libs && pnpm -r --filter \"./apps/**\" --filter \"./scripts\" --filter mappers-oracle --if-present run typecheck",
"test:oracle": "pnpm --filter mappers-oracle run test",
"test:anchor": "ts-mocha -p ./tsconfig.anchor.json -t 1000000 tests/**/*.ts"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@solana/web3.js": "^1.98.4",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"chai": "^6.2.2",
"mocha": "^11.8.0",
"prettier": "^3.9.6",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
}
}