-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "dispose-me",
"version": "2.1.0",
"description": "Dispose Me is a simple AWS-hosted disposable email service.",
"author": "Kamil Dybicz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kdybicz/dispose-me.git"
},
"engines": {
"node": ">=v20.0.0"
},
"bin": {
"disposeme": "bin/dispose-me.js"
},
"scripts": {
"prebuild": "yarn --frozen-lockfile",
"build": "rm -Rf dist && webpack",
"predeploy": "yarn build && yarn lint && yarn test",
"deploy": "cdk deploy",
"lint": "biome check ./bin ./lib ./service",
"lint:ci": "biome lint ./bin ./lib ./service",
"prestart": "cdk synth",
"start": "sam local start-api -t ./cdk.out/DisposeMeStack.template.json",
"test": "jest",
"test:ci": "jest -ci"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/aws-lambda": "^8.10.17",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.9",
"@types/jest": "^29.5.12",
"@types/mailparser": "^3.0.0",
"@types/node": "20.14.9",
"aws-cdk": "2.166.0",
"aws-cdk-lib": "2.166.0",
"constructs": "^10.0.0",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.5",
"ts-loader": "^9.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"address-rfc2822": "^2.0.5",
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.904.0",
"ejs": "^3.1.5",
"email-addresses": "^5.0.0",
"express": "^4.17.1",
"express-validator": "^7.2.0",
"mailparser": "^3.0.0",
"serverless-http": "^3.0.1",
"source-map-support": "^0.5.21"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}