-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 968 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 968 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
{
"name": "binaryx",
"private": true,
"license": "AGPL-3.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier -c .",
"format:write": "prettier -w ."
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"globals": "^16.4.0",
"jsdom": "24.0.0",
"prettier": "^3.3.3",
"turbo": "^2.5.4",
"typescript-eslint": "^8.44.0"
},
"packageManager": "bun@1.1.17"
}