-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "apps",
"private": true,
"author": "Jakub Mazanec <[email protected]>",
"workspaces": [
"./apps/*",
"./packages/*"
],
"scripts": {
"build": "turbo run build --no-daemon",
"changeset": "changeset",
"clean": "turbo run clean --no-daemon",
"document": "turbo run document --no-daemon",
"format": "turbo run format --no-daemon && prettier ./*.* --write --ignore-unknown",
"lint": "turbo run lint --no-daemon",
"prepare": "patch-package && carson update workspace",
"reinstall": "npm run uninstall && npm install",
"test": "turbo run test --no-daemon",
"typecheck": "turbo run typecheck --no-daemon",
"uninstall": "del-cli ./**/node_modules ./package-lock.json"
},
"dependencies": {
"@headlessui/react": "^2.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@jakubmazanec/carson": "^2.0.0",
"@jakubmazanec/carson-templates": "^4.0.2",
"@jakubmazanec/changesets-changelog": "^2.0.8",
"@types/node": "^22.0.0",
"del-cli": "^6.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^22.13.0"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-reconciler": "^0.31.0"
}
}