-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "@local/stitch-monorepo",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"bump": "treb version && node scripts/changelogs.mjs && git add . && git commit -m \"chore: updated changelogs\" && treb publish",
"build:all": "turbo run build",
"test:all": "turbo run test",
"clean:artifacts": "node ./scripts/nuke-builds.mjs",
"clean:deps": "node ./scripts/nuke-deps.mjs",
"fix:deps": "syncpack fix-mismatches",
"watch": "turbo run watch --parallel",
"setup:pnpm": "corepack prepare $npm_package_packageManager --activate"
},
"dependencies": {
"@bscotch/pathy": "^2.12.0",
"@bscotch/trebuchet": "2.9.3",
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "~6.11.0",
"@typescript-eslint/parser": "~6.11.0",
"@typescript-eslint/utils": "^6.11.0",
"del": "7.1.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"syncpack": "^11.2.1",
"turbo": "^1.10.16",
"zx": "^7.2.3"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"syncpack": {
"workspace": false,
"source": [
"package.json",
"packages/*/package.json"
]
},
"trebuchet": {
"npmScope": "@bscotch",
"vscodeWorkspaceConfigPath": false
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@bscotch/workspaces": "0.3.0",
"typescript": "5.2.2"
}
}