-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 834 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 834 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
{
"name": "@galliun/sofi",
"version": "0.0.0",
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-love": "^107.0.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"prettier": "^3.3.2 ",
"typescript-eslint": "^8.16.0"
},
"private": true,
"scripts": {
"build": "bun workspaces run build",
"clean": "bun workspaces run clean",
"lint": "bun workspaces run lint",
"test": "bun workspaces run test",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "eslint --max-warnings=0 . --fix"
},
"workspaces": {
"packages": [],
"nohoist": []
}
}