-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.36 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
{
"name": "react-text-game",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.37.0",
"@happy-dom/global-registrator": "^19.0.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.2.23",
"bun-types": "^1.2.23",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-react-refresh": "^0.4.23",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.23",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run check-types",
"docs": "turbo run dev --filter @react-text-game/docs",
"docs:build": "turbo run build --filter @react-text-game/docs",
"changeset": "bunx changeset"
},
"workspaces": [
"apps/*",
"packages/*"
]
}