-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "@template/root",
"description": "Base folder for SST template",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"backend",
"frontend",
"shared"
],
"scripts": {
"prep": "npm install",
"lint": "biome check --write --unsafe",
"dev": "sst dev",
"sst:install": "sst install",
"deploy": "sst deploy",
"upload:frontend": "node scripts/upload-to-s3.cjs",
"remove": "sst remove",
"unlock": "sst unlock",
"console": "sst console"
},
"devDependencies": {
"@biomejs/biome": "~1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@tsconfig/node22": "^22",
"@types/aws-lambda": "^8.10.149",
"@types/mime-types": "^2.1.2",
"@types/node": "^20.10.5",
"@vitest/coverage-v8": "~3.1.2",
"cspell": "~8.19.4",
"ts-node": "^10.9.1",
"typescript": "~5.8.3",
"vitest": "~3.1.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.806.0",
"@aws-sdk/s3-request-presigner": "^3.821.0",
"aws-lambda": "^1.0.7",
"pino": "^9.6.0",
"sst": "~3.14.20",
"zod": "^3.24.4"
}
}