-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 904 Bytes
/
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
{
"name": "quick-and-dirty-serverless-geoip-api",
"version": "0.1.0",
"bin": {
"quick-and-dirty-serverless-geoip-api": "bin/quick-and-dirty-serverless-geoip-api.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assert": "1.133.0",
"@aws-cdk/aws-apigatewayv2": "^1.133.0",
"@aws-cdk/aws-apigatewayv2-integrations": "^1.133.0",
"@aws-cdk/aws-lambda": "^1.133.0",
"@aws-cdk/aws-lambda-nodejs": "^1.133.0",
"@aws-cdk/core": "1.133.0",
"@types/decompress": "^4.2.3",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "1.133.0",
"decompress": "^4.2.1",
"esbuild": "^0.11.11",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@maxmind/geoip2-node": "^2.3.2"
}
}