-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"private": true,
"homepage": "https://dotconnect.dev/",
"bugs": {
"url": "https://github.com/tien/dot-connect/issues",
"email": "[email protected]"
},
"license": "LGPL-3.0-or-later",
"author": "Tiến Nguyễn Khắc <[email protected]> (https://tien.zone/)",
"repository": "github:tien/dot-connect",
"type": "module",
"packageManager": "[email protected]",
"volta": {
"node": "22.11.0",
"yarn": "4.5.3"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "nx run-many -t dev",
"build": "nx run-many -t build",
"build:packages": "nx run-many -t build --projects='packages/*'",
"publish:packages": "yarn build:packages && yarn workspaces foreach -Apt --no-private npm publish --tolerate-republish && yarn changeset tag",
"lint": "nx run-many -t lint",
"postinstall": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"husky": "^9.1.7",
"nx": "^20.3.3",
"prettier": "^3.4.2"
}
}