-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 957 Bytes
/
package.json
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
{
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@skyblock-finance/eslint-config": "*",
"eslint": "^9.6.0",
"knip": "^5.23.2",
"prettier": "^3.3.2",
"publint": "^0.2.8",
"sherif": "^0.9.0",
"turbo": "^1.13.4",
"typescript": "^5.5",
"typescript-eslint": "^7.14.1"
},
"license": "MIT",
"name": "root",
"private": true,
"scripts": {
"build": "turbo run build",
"check": "turbo run check",
"check:arethetypeswrong": "turbo run check:arethetypeswrong",
"check:eslint": "turbo run check:eslint",
"check:knip": "turbo run check:knip",
"check:prettier": "turbo run check:prettier",
"check:publint": "turbo run check:publint",
"check:sherif": "turbo run check:sherif",
"fix": "turbo run fix",
"fix:eslint": "turbo run fix:eslint",
"fix:prettier": "turbo run fix:prettier",
"test": "turbo run test",
"watch": "turbo run watch"
},
"type": "module",
"workspaces": [
"internals/*",
"packages/*"
]
}