-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hyperse-next-mate-monorepo",
"version": "0.0.1",
"private": true,
"description": "The tRPC framework based on next.js app router with i18n",
"keywords": [
"next.js",
"next mate",
"trpc",
"next trpc",
"hyperse.net"
],
"homepage": "https://github.com/hyperse-io/next-mate",
"repository": {
"type": "git",
"url": "https://github.com/hyperse-io/next-mate"
},
"author": {
"name": "hyperse net",
"url": "https://github.com/hyperse-net"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"g:clean": "yarn clean:global-cache && yarn workspaces foreach --all -ptv run clean",
"g:build": "yarn g:build-release",
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
"g:build-release": "yarn workspaces foreach -At run build-release",
"g:build-local": "yarn workspaces foreach -At run build",
"g:test": "yarn workspaces foreach --all -ptv run test",
"g:test-unit": "yarn workspaces foreach --all -ptv run test-unit",
"g:test-e2e": "yarn workspaces foreach -At run test-e2e",
"g:test-coverage": "yarn workspaces foreach -At run test-coverage",
"g:lint": "yarn workspaces foreach --all -ptv run lint",
"g:typecheck": "yarn workspaces foreach --all -ptv run typecheck",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:fix-all-files": "yarn workspaces foreach --all -ptv run fix-all-files",
"g:changeset": "changeset",
"g:version": "changeset version",
"g:release": "yarn g:build-release && changeset publish",
"g:cz": "cz",
"g:publish-local": "yarn changeset version && cd scripts && ./publish-to-verdaccio.sh",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"cross-env": "7.0.3"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@hyperse/eslint-config-hyperse": "^1.2.6",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.13.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
}
}