-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 KB
/
package.json
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
{
"name": "itsumono",
"author": "K.Utsunomiya",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=22 <23",
"pnpm": ">=9"
},
"workspaces": [
"packages/*",
"website",
"local/*"
],
"scripts": {
"lint": "biome lint ./",
"lint:fix": "biome lint --write ./",
"format": "biome format ./",
"format:fix": "biome format --write ./",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"build": "turbo run build --filter=./packages/*",
"docs": "npm run build -w website"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@local/tsconfig": "workspace:*",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.1.6",
"jsdom": "^25.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.0.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
}
}