-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 867 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 867 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "syntaxlab",
"version": "1.0.0",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "oxfmt .",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"pre-push": "bun run test"
},
"lint-staged": {
"*.{ts,tsx,vue,js,mjs}": [
"oxlint --fix",
"oxfmt --write"
]
},
"keywords": [],
"author": "Jeferson Brito",
"license": "MIT",
"devDependencies": {
"@pinia/testing": "^1.0.3",
"lint-staged": "^15.5.2",
"oxfmt": "^0.0.2",
"oxlint": "^0.16.10",
"simple-git-hooks": "^2.13.0",
"turbo": "^2.8.1",
"vitest": "^4.0.18",
"web": "^0.0.2",
"wrangler": "^4.78.0"
},
"packageManager": "bun@1.3.5"
}