-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"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"
},
"packageManager": "yarn@3.3.1",
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-angular": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^2.8.7",
"tsup": "^6.7.0",
"turbo": "^1.8.8",
"typescript": "^5.0.3"
},
"workspaces": [
"apps/**",
"packages/**"
],
"lint-staged": {
"{apps,packages}/**/*.ts": "eslint --fix --ext ts"
},
"private": true
}