forked from anomalyco/sst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.7 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@serverless-stack/cli",
"version": "0.40.6",
"description": "A CLI to help deploy Serverless Stack apps.",
"scripts": {
"build:dotnet": "docker run --rm -v ${PWD}/scripts/util/dotnet-bootstrap:/tmp/bootstrap mcr.microsoft.com/dotnet/sdk:3.1 bash -c \"cd /tmp/bootstrap && dotnet publish --output release --configuration Release --framework netcoreapp3.1 --self-contained false -nologo --verbosity minimal /target:Rebuild\"",
"build:java": "cd scripts/util/java-bootstrap && ./install.sh",
"prepare": "node ./bin/sync-cdk-version.js",
"jest-clear-cache": "jest --clearCache",
"test": "jest"
},
"bin": {
"sst": "./bin/scripts.js"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/helpers/setup-tests.js"
],
"testPathIgnorePatterns": [
"<rootDir>/scripts",
"<rootDir>/test/jest/test",
"<rootDir>/test/jest-ts/test",
"<rootDir>/test/template-app/test",
"<rootDir>/test/template-app-ts/test"
]
},
"author": {
"name": "Serverless Stack",
"url": "https://serverless-stack.com"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/serverless-stack/serverless-stack.git",
"directory": "packages/cli"
},
"homepage": "https://serverless-stack.com",
"dependencies": {
"@aws-cdk/aws-apigatewayv2": "1.114.0",
"@aws-cdk/aws-dynamodb": "1.114.0",
"@aws-cdk/aws-iam": "1.114.0",
"@aws-cdk/aws-lambda": "1.114.0",
"@aws-cdk/core": "1.114.0",
"@babel/core": "^7.10.5",
"@babel/eslint-parser": "^7.11.3",
"@babel/eslint-plugin": "^7.11.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@serverless-stack/core": "^0.40.6",
"@serverless-stack/resources": "^0.40.6",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"aws-cdk": "1.114.0",
"aws-sdk": "^2.761.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"core-js": "^3.6.5",
"cross-spawn": "^7.0.3",
"detect-port-alt": "^1.1.6",
"esbuild": "^0.12.20",
"eslint": "^7.16.0",
"express": "^4.17.1",
"fast-safe-stringify": "^2.0.6",
"fs-extra": "^9.0.1",
"is-root": "^2.1.0",
"jest": "^26.1.0",
"node-fetch": "^2.6.1",
"promise.allsettled": "^1.0.2",
"prompts": "^2.4.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.1.4",
"typescript": "^4.2.3",
"ws": "^7.4.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"replace-in-file": "^6.1.0"
},
"gitHead": "ef4db05a8b92a136204e65a70474ab529e55dbe6"
}