-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "console",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"packages/web/*"
],
"scripts": {
"env": "env",
"prepare": "git config --local core.hooksPath .githooks",
"dev": "sst dev",
"sso": "aws sso login --sso-session=sst --no-browser --use-device-code",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/bun": "^1.1.18",
"constructs": "10.3.0",
"sst": "3.8.9",
"turbo": "2.3.4",
"typescript": "5.5.4"
},
"dependencies": {
"@tsconfig/node20": "^20.1.4"
},
"patchedDependencies": {
"@macaron-css/[email protected]": "patches/@macaron-css%[email protected]"
},
"overrides": {
"@rocicorp/zero": "0.16.2025022000"
},
"trustedDependencies": [
"@rocicorp/zero-sqlite3",
"protobufjs"
]
}