-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "mcdes",
"private": true,
"version": "1.0.0",
"main": "index.js",
"author": "Julian <[email protected]>",
"license": "MIT",
"type": "module",
"workspaces": [
"client",
"services",
"shared"
],
"scripts": {
"tsc": "tsc --build --verbose",
"start:services": "sst start",
"start:script": "yarn workspace services run start:local",
"start:client": "yarn workspace client run dev",
"prepare": "yarn workspace shared run tsc",
"build": "yarn prepare && sst build",
"deploy": "yarn prepare && sst deploy",
"destroy": "sst remove",
"console": "sst console",
"test": "sst load-config -- vitest run",
"docker:build": "docker build --tag aws-cdk-batch-typescript .",
"docker:run": "docker run aws-cdk-batch-typescript"
},
"devDependencies": {
"@esbuild-kit/esm-loader": "^2.4.2",
"@serverless-stack/cli": "^1.10.6",
"@serverless-stack/resources": "^1.10.6",
"@types/aws-lambda": "^8.10.102",
"aws-cdk-lib": "2.32.0",
"esbuild": "^0.15.7",
"typescript": "^4.8.2",
"vitest": "^0.23.1"
},
"packageManager": "[email protected]"
}