-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.43 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": "@jakubmazanec/js-tools",
"private": true,
"description": "Collection of JavaScript and TypeScript tools.",
"license": "MIT",
"author": "Jakub Mazanec <jakub@mazanec.dev>",
"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 && turbo run build --no-daemon --filter=@jakubmazanec/carson && turbo run build --no-daemon --filter=@jakubmazanec/carson-templates && 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"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.7",
"concurrently": "^9.1.2",
"del-cli": "^6.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"turbo": "^2.3.4",
"typescript": "^5.7.3"
},
"packageManager": "npm@10.9.0",
"engines": {
"node": "^22.13.0"
},
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-reconciler": "^0.31.0"
}
}