-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "invoice-liquidity-network",
"private": true,
"workspaces": [
"packages/*",
"frontend"
],
"scripts": {
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:load": "ts-node --esm scripts/load-test.ts",
"test:load:indexer": "ts-node --esm scripts/load-test-indexer.ts",
"test:load:notifications": "ts-node --esm scripts/load-test-notifications.ts",
"build": "turbo run build",
"licence:check": "node scripts/check-licenses.js",
"generate:types": "ts-node --esm scripts/generate-types.ts",
"dev": "turbo run dev",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"docs:dev": "npm run dev -w @invoice-liquidity/docs",
"docs:build": "npm run docs:generate -w @iln/sdk && npm run build -w @invoice-liquidity/docs",
"docs:api": "npm run docs:generate -w @iln/sdk",
"react:dev": "npm run dev -w @iln/react",
"react:build": "npm run build -w @iln/react",
"react:test": "npm run test -w @iln/react",
"dead-code:check": "knip",
"gitleaks:scan": "pnpm exec gitleaks detect --no-git -s . --config gitleaks.toml --baseline-path .secrets.baseline",
"gitleaks:baseline": "pnpm exec gitleaks detect --no-git -s . --config gitleaks.toml --report-format json --report-path .secrets.baseline",
"syncpack:check": "syncpack list-mismatches"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@commitlint/cli": "^17.6.0",
"@commitlint/config-conventional": "^17.6.0",
"chromatic": "^17.4.1",
"gitleaks-secret-scanner": "^2.1.1",
"husky": "^8.0.0",
"license-checker-rseidelsohn": "^5.0.1",
"syncpack": "^13.0.0",
"ts-node": "^10.9.2",
"turbo": "^2.5.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"prepare": "husky install",
"bin": {
"iln": "packages/scripts/bin/iln.js"
},
"pnpm": {
"overrides": {
"axios": ">=1.16.0"
}
},
"packageManager": "yarn@4.16.0"
}