-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8",
"engines": {
"node": ">=22.12.0"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"preview": "turbo run preview",
"test": "turbo run test",
"benchmark": "turbo run benchmark",
"release": "turbo run release",
"lint": "eslint --ext .ts ./**/src/**.ts",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"turbo": "^1.2.14",
"typescript": "^4.6.4",
"vite": "^7.1.11",
"vitest": "^4.0.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"pnpm": {
"overrides": {
"handlebars": ">=4.7.9"
}
}
}