-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "focus-trap-monorepo",
"packageManager": "yarn@3.6.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"g:build": "yarn workspaces foreach -p --topological-dev -v run build",
"g:changeset": "changeset",
"g:release": "yarn g:build && changeset publish",
"g:typecheck": "yarn workspaces foreach -ptv run typecheck",
"postinstall": "is-ci || husky install",
"deps:check": "yarn dlx npm-check-updates@latest --deep",
"deps:update": "yarn dlx npm-check-updates@latest -u --deep",
"check:install": "yarn dlx @yarnpkg/doctor@3.1.4 .",
"update:repo": "yarn set version latest && yarn deps:update && yarn install && yarn dedupe --strategy highest"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"concurrently": "8.2.2",
"cypress": "13.15.2",
"eslint": "9.14.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"true-myth": "^6.2.0",
"turbo": "^1.10.7",
"type-fest": "^4.0.0",
"typescript": "5.6.3"
},
"author": {
"name": "Davide Modica",
"email": "davidevmod@gmail.com",
"url": "https://github.com/DaviDevMod"
}
}