forked from clebert/aws-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
{
"name": "aws-simple",
"version": "18.7.0",
"description": "Production-ready AWS website deployment with minimal configuration.",
"repository": {
"type": "git",
"url": "https://github.com/clebert/aws-simple.git"
},
"license": "MIT",
"author": "Clemens Akens",
"type": "module",
"types": "./lib/index.d.ts",
"bin": {
"aws-simple": "./lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"ci": "run-p compile:check compile:emit format:check test",
"compile:check": "tsc",
"compile:emit": "tsc --project tsconfig.emit.json",
"postcompile:emit": "chmod +x lib/index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --silent",
"release": "npm version",
"postrelease": "git push --follow-tags",
"start": "node ./lib/index.js",
"upgrade": "npm-check-updates --upgrade --reject '/express|zod/'"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.848.0",
"@aws-sdk/client-cloudformation": "^3.848.0",
"@aws-sdk/client-iam": "^3.848.0",
"@aws-sdk/client-s3": "^3.850.0",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"compression": "^1.8.1",
"express": "^4.21.2",
"get-port": "^7.1.0",
"lambda-local": "^2.2.0",
"mime-types": "^3.0.1",
"mkdirp": "^3.0.1",
"prompts": "^2.4.2",
"yargs": "^18.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@swc/core": "^1.13.2",
"@swc/jest": "^0.2.39",
"@types/aws-lambda": "^8.10.152",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.21",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.1.0",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.33",
"jest": "^30.0.5",
"npm-check-updates": "^18.0.2",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.108.0"
}
}