-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
40
41
42
43
44
45
46
47
{
"name": "pusher-react",
"version": "1.0.0",
"description": "Pusher React monorepo",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --check --cache --ignore-unknown \"**/*\"",
"commit": "git-cz",
"prepare": "husky install",
"postinstall": "manypkg check",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm format --write"
},
"type": "module",
"author": "Peter van Meijgaard <petervanmeijgaard@gmail.com>",
"license": "MIT",
"dependencies": {
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@manypkg/cli": "^0.21.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.11.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.5.2",
"turbo": "^1.10.16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "pnpm@8.15.9",
"volta": {
"node": "20.9.0",
"pnpm": "8.15.9"
}
}