-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) Β· 961 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) Β· 961 Bytes
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
{
"name": "AZIT_Front",
"private": true,
"scripts": {
"postinstall": "lefthook install",
"format": "prettier --cache --write . && turbo run lint -- --fix",
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=web",
"dev:mobile": "pnpm --filter mobile start",
"build:web": "turbo run build --filter=web",
"build:mobile": "pnpm --filter mobile build",
"lint": "turbo run lint",
"prettier": "prettier --cache --check \"**/*.{js,jsx,ts,tsx,json,md,yaml,yml}\"",
"typecheck": "turbo run typecheck",
"commitlint": "commitlint"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@turbo/gen": "^2.7.2",
"eslint": "catalog:",
"lefthook": "^1.10.0",
"prettier": "^3.7.4",
"turbo": "^2.7.2",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.26.0",
"engines": {
"node": ">=18"
}
}