-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 814 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
{
"name": "modular-react",
"version": "1.0.0",
"private": true,
"description": "Shared primitives for building modular React applications with pluggable routing and state management.",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run typecheck && oxfmt --check . && oxlint .",
"lint:fix": "oxfmt --write . && oxlint --fix .",
"check:lockfile-dedup": "node scripts/check-lockfile-dedup.mjs",
"check:publish": "node scripts/check-publish.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.0",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"publint": "^0.3.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.15.0"
}