-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 978 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
38
39
{
"name": "@workspace/root",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"format": "prettier --write .",
"generate": "turbo run generate",
"lint": "turbo run lint -- --fix",
"prepare": "husky",
"test": "turbo run test",
"watch": "turbo run watch",
"write": "turbo run write"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.18",
"@workspace/eslint-config": "workspace:*",
"@workspace/prettier-config": "workspace:*",
"esbuild": "^0.21.3",
"esbuild-jest": "^0.5.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "29.1.2",
"turbo": "^1.13.3",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18 <19",
"pnpm": "^8 <9"
}
}