-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "kitchen-sink",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"check:admin-template": "sa sync-admin-template --check",
"create:admin": "sa create-admin",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test:ui": "vitest --ui",
"test:watch": "turbo run test:watch",
"sync:admin-template": "sa sync-admin-template",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@skyroc/config": "workspace:*",
"@skyroc/tsconfig": "workspace:*",
"@testing-library/jest-dom": "catalog:dev",
"@testing-library/react": "catalog:dev",
"@types/react": "catalog:dev",
"@types/react-dom": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"@vitest/ui": "^4.0.18",
"happy-dom": "catalog:dev",
"msw": "catalog:dev",
"oxfmt": "^0.45.0",
"oxlint": "catalog:dev",
"rimraf": "catalog:dev",
"simple-git-hooks": "catalog:dev",
"tsdown": "catalog:dev",
"turbo": "catalog:dev",
"typescript": "catalog:core",
"vitest": "catalog:dev"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.4.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@shopify/react-native-skia",
"esbuild",
"msw",
"sharp",
"simple-git-hooks",
"unrs-resolver"
],
"overrides": {
"lightningcss": "1.30.1"
}
}
}