-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
46 lines (46 loc) · 1.48 KB
/
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
38
39
40
41
42
43
44
45
46
{
"name": "@beth-stack/root",
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@manypkg/cli": "^0.20.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/eslint": "^8.44.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.14",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-isaacscript": "^3.5.5",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"turbo": "^1.10.1",
"typescript": "^5.1.6"
},
"private": true,
"scripts": {
"build:all": "turbo run build",
"build": "turbo run build --filter \"./packages/*\"",
"clean": "turbo run clean && git clean -xdf node_modules",
"format:check": "prettier --check .",
"format": "prettier --write . --list-different",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"reset-cache": "rm -rf /home/whatplan/.bun/install/cache && rm -rf node_modules && bun i",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"check": "turbo lint typecheck format:check && manypkg check",
"release": "changeset version"
},
"type": "module",
"workspaces": [
"packages/*",
"www"
],
"devDependencies": {
"@types/shelljs": "^0.8.15"
}
}