-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 918 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
{
"name": "main",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter '!./apps/*'",
"build:apps": "turbo run build --filter '!./packages/*'",
"lint": "turbo run lint",
"format": "turbo run format",
"dev": "turbo run dev",
"postinstall": "is-ci || husky install",
"update": "yarn upgrade-interactive",
"generate": "turbo gen"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-angular": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@turbo/gen": "^1.12.3",
"@types/node": "^18.19.8",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"tsup": "^8.0.2",
"turbo": "^1.12.3",
"typescript": "^5.3.3"
},
"workspaces": [
"apps/**",
"packages/**"
],
"engines": {
"node": ">=18"
},
"private": true
}