-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1022 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:extension": "turbo build --filter=@favolink/extension",
"build:web": "turbo build --filter=@favolink/web",
"dev": "turbo dev",
"dev:extension": "turbo dev --filter=@favolink/extension",
"dev:web": "turbo dev --filter=@favolink/web",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"lint:pack": "packlint sort -R",
"postinstall": "pnpm lint:pack",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@tsconfig/favolink": "workspace:*",
"@types/eslint": "^8.56.1",
"@types/node": "^20.10.6",
"eslint": "^8.56.0",
"eslint-config-favolink": "workspace:*",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"packlint": "^0.2.4",
"prettier": "^3.1.1",
"turbo": "latest",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}