-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 926 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
30
31
{
"name": "managed-auth-react-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"dev": "bun run --filter '*' dev",
"typecheck": "bun run --filter '*' typecheck",
"test": "bun test",
"lint": "bun run --filter '*' lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,css}\"",
"changeset": "npx changeset",
"version-packages": "npx changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "^2.27.0",
"@onkernel/sdk": "0.93.0",
"@types/bun": "1.2.21",
"@types/node": "^20",
"@types/react-test-renderer": "18.3.1",
"prettier": "^3.3.0",
"react-test-renderer": "18.3.1",
"typescript": "^5.6.0"
},
"packageManager": "bun@1.2.21"
}