-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
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
37
{
"name": "@repo/root",
"version": "1.1.3",
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"format": "prettier --check .",
"format:fix": "prettier --write . --list-different",
"lint": "turbo lint",
"prepare": "husky",
"release": "pnpm changeset publish --filter=@pyyupsk/messenger-webhooks",
"start": "turbo start",
"test": "pnpm test --filter=@repo/tests"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"knip": "^5.29.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-pkg": "^0.18.1",
"turbo": "^2.1.1",
"typescript": "^5.5.4"
}
}