-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "jslib",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"bump": "turbo run test build && treb version && node scripts/changelogs.mjs && git add . && git commit -m \"chore: updated changelogs\" && treb publish",
"build:all": "turbo run build --force",
"test:all": "turbo run test --force",
"clean:artifacts": "node ./scripts/nuke-builds.mjs",
"clean:deps": "node ./scripts/nuke-deps.mjs",
"fix:deps": "syncpack fix-mismatches && treb fix --allProjects --packageJson",
"watch": "turbo run watch --parallel"
},
"dependencies": {
"@bscotch/trebuchet": "workspace:*",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "~6.7.2",
"@typescript-eslint/parser": "~6.7.2",
"@typescript-eslint/utils": "^6.7.2",
"concurrently": "^8.2.1",
"del": "7.1.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"syncpack": "^11.2.1",
"tslib": "^2.6.2",
"turbo": "^1.10.14",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=7",
"yarn": ">=3"
},
"syncpack": {
"workspace": false,
"source": [
"package.json",
"*/*/package.json"
]
},
"trebuchet": {
"npmScope": "@bscotch",
"keep": {
"dependencies": [
"@types/chai",
"@types/mocha",
"@types/node",
"@typescript-eslint*",
"eslint*",
"nano-staged",
"prettier*",
"source-map-support",
"concurrently",
"mongoose",
"yaml",
"zx"
]
},
"vscodeWorkspaceConfigPath": false
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
]
}