-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "xstack",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"test": "turbo test",
"test:coverage": "pnpm -C packages/api test:coverage && pnpm -C apps/app test:coverage",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:ui": "playwright test --ui",
"dev": "turbo dev",
"build": "turbo build",
"lint": "oxlint --config .oxlintrc.json --react-plugin --node-plugin .",
"lint:fix": "oxlint --config .oxlintrc.json --react-plugin --node-plugin --fix .",
"fmt": "oxfmt --config .oxfmtrc.jsonc --write .",
"fmt:check": "oxfmt --config .oxfmtrc.jsonc --check .",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.2",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"supabase": "^2.75.5",
"turbo": "^2.8.3",
"typescript": "~5.9.3"
},
"packageManager": "pnpm@10.6.5",
"pnpm": {
"onlyBuiltDependencies": [
"supabase"
]
}
}