-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.49 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --continue",
"lint": "eslint --max-warnings=0 . && turbo run lint",
"lint:attw": "turbo run lint:attw",
"lint:publint": "turbo run lint:publint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo run build --filter=docs^... && turbo run semantic-release --concurrency=1",
"test": "turbo run build && turbo run test",
"test:packages": "turbo run build --filter='./packages/*' && turbo run test --filter='./packages/*'"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@arktype/fs": "^0.0.20",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@colbyfayock/semantic-release-pnpm": "^1.0.7",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"prettier": "^3.3.2",
"publint": "^0.2.9",
"semantic-release": "^20.1.0",
"semantic-release-monorepo": "^7.0.5",
"tsup": "^8.1.0",
"tsx": "^4.16.0",
"turbo": "^1.7.2",
"typescript": "^5.5.2",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]"
}