-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.57 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.57 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "randsum-monorepo",
"private": true,
"devDependencies": {
"@astrojs/netlify": "7.0.4",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@eslint/js": "10.0.1",
"@size-limit/preset-small-lib": "12.0.1",
"@types/bun": "1.3.11",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"astro": "6.0.8",
"bunup": "0.16.31",
"devalue": "5.6.4",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"fast-check": "4.6.0",
"flatted": "3.4.2",
"knip": "6.0.5",
"lefthook": "2.1.4",
"mitata": "1.0.34",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"size-limit": "12.0.1",
"typescript": "6.0.2",
"typescript-eslint": "8.57.2",
"undici": "6.24.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.3.10"
},
"catalog": {
"fast-check": "4.6.0",
"@types/bun": "1.3.10",
"mitata": "1.0.34",
"typescript": "5.9.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
},
"scripts": {
"prepare": "[ -d .git ] && (git config --unset-all --local core.hooksPath 2>/dev/null; lefthook install) || true",
"help": "bun scripts/help.ts",
"dev": "bun run --filter '*' dev",
"build": "bun run --filter '@randsum/roller' build && bun run --filter '@randsum/games' --filter '@randsum/cli' --filter '@randsum/discord-bot' build",
"test": "bun run --filter '@randsum/roller' --filter '@randsum/games' --filter '@randsum/cli' --filter '@randsum/discord-bot' test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=./coverage",
"lint": "bun run --filter '@randsum/*' lint",
"format": "bun run --filter '@randsum/*' format",
"format:check": "bun run --filter '@randsum/*' format:check",
"typecheck": "bun run --filter '@randsum/*' typecheck",
"check": "bun run --filter '@randsum/roller' check && bun run --filter '@randsum/games' check && bun run --filter '@randsum/cli' check && bun run --filter '@randsum/discord-bot' check && bun run --filter '@randsum/site' check && bun run --filter '@randsum/rdn' check",
"bench": "bun run packages/roller/__benchmarks__/roll.bench.ts",
"bench:ci": "bun run packages/roller/__benchmarks__/roll.bench.ts --json > benchmark-results.json",
"profile": "bun --cpu-prof packages/roller/__benchmarks__/roll.bench.ts",
"profile:md": "bun --cpu-prof-md packages/roller/__benchmarks__/roll.bench.ts",
"knip": "knip --exclude catalog --no-config-hints",
"fix:all": "bun run lint -- --fix && bun run format",
"site:build": "bun --filter @randsum/site build",
"site:dev": "bun run --filter @randsum/site dev",
"rdn:build": "bun run --filter @randsum/rdn build",
"rdn:dev": "bun run --filter @randsum/rdn dev",
"expo:start": "cd apps/expo && npx expo start",
"expo:web": "cd apps/expo && npx expo start --web",
"expo:ios": "cd apps/expo && npx expo start --ios",
"expo:android": "cd apps/expo && npx expo start --android",
"expo:build": "cd apps/expo && npx eas-cli build --platform all --profile production --auto-submit",
"expo:build:android": "cd apps/expo && npx eas-cli build --platform android --profile production --auto-submit",
"expo:build:ios": "cd apps/expo && npx eas-cli build --platform ios --profile production --auto-submit",
"expo:deploy": "cd apps/expo && npx expo export --platform web && npx eas-cli deploy --prod",
"expo:deploy:staging": "cd apps/expo && npx expo export --platform web && npx eas-cli deploy",
"discord:dev": "cd apps/discord-bot && bun run dev",
"discord:deploy": "cd apps/discord-bot && bun run deploy-commands",
"discord:start": "cd apps/discord-bot && bun run start",
"discord:build": "bun --filter @randsum/discord-bot build",
"discord:lint": "bun --filter @randsum/discord-bot lint",
"discord:format": "bun --filter @randsum/discord-bot format",
"discord:typecheck": "bun --filter @randsum/discord-bot typecheck",
"changeset": "bunx changeset",
"version-packages": "bunx changeset version",
"publish": "bun run build && bun run check && bun scripts/publish.ts"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"overrides": {
"lodash": "4.17.23",
"markdown-it": "14.1.1",
"mdast-util-to-hast": "13.2.1",
"undici": "6.24.0",
"tar": "7.5.11",
"devalue": "5.6.4",
"flatted": "3.4.2",
"yauzl": "3.2.1",
"h3": "1.15.9",
"yaml": "2.8.3",
"brace-expansion": "5.0.5"
}
}