-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 946 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
{
"name": "monorepo-root",
"private": true,
"scripts": {
"bump": "changeset version",
"changeset": "changeset",
"dev": "turbo run dev",
"run-examples": "turbo run run-example",
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"check-ts": "turbo run check-ts",
"release": "turbo run build && changeset publish",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"pre-push-hook": "pnpm run lint && pnpm run check-ts"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.50.0",
"husky": "8.0.3",
"turbo": "^1.10.14",
"typescript": "5.2.2",
"vite": "^5.3.4"
},
"pnpm": {
"overrides": {
"esbuild": "0.19.4"
}
}
}