-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
38
39
40
41
42
43
44
{
"name": "next-collect-monorepo",
"workspaces": [
"packages/*",
"apps/*"
],
"version": "0.0.0",
"private": true,
"scripts": {
"factory-reset": "pnpm run -r clean && rm -rf `find . -name node_modules -type d` && rm -rf `find . -name .cache -type d` && rm -rf `find . -name .turbo -type d`",
"clean": "pnpm run -r clean",
"build": "pnpm run -r build",
"test": "pnpm run -r test",
"dev": "pnpm run -r --stream --parallel dev",
"release": "pnpm build && monorel --npm-tag beta --filter './packages/next-collect'",
"canary:publish": "monorel --filter './packages/next-collect' --version '2.0.0-alpha.{rev}.{time}' --npm-tag canary --publish",
"lint": "pnpm run -r lint",
"format:check": "prettier --check --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"format": "prettier --write --config ./.prettierrc.json --ignore-path ./.prettierignore .",
"prepare": "husky install"
},
"devDependencies": {
"@types/json5": "^2.2.0",
"@types/minimist": "^1.2.5",
"@types/node": "^17.0.45",
"beachball": "^2.39.0",
"husky": "^8.0.3",
"json5": "^2.2.3",
"minimist": "^1.2.8",
"monorel": "^0.5.0",
"prettier": "latest",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"yarn": ">=1000",
"pnpm": ">=3",
"npm": ">=1000",
"node": ">=18"
},
"packageManager": "pnpm@8",
"repository": "jitsucom/next-collect",
"author": "Jitsu Team <[email protected]>"
}