-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.47 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
{
"name": "analytics-tracker",
"version": "1.0.0",
"description": "Multi-tenant serverless analytics tracker for AWS (S3 + Lambda + API Gateway + Athena)",
"main": "cdk/lib/analytics-stack.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "sls offline",
"cdk": "cdk",
"deploy": "cdk deploy",
"synth": "cdk synth",
"diff": "cdk diff",
"destroy": "cdk destroy"
},
"keywords": [
"analytics",
"aws",
"lambda",
"s3",
"athena",
"serverless",
"multi-tenant",
"cdk"
],
"author": "",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"aws-cdk-lib": "^2.128.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.395.0",
"@types/aws-lambda": "^8.10.115",
"@types/jest": "^29.5.2",
"@types/node": "^20.5.0",
"aws-cdk": "^2.128.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.3",
"jest": "^29.5.0",
"serverless": "^4.28.0",
"serverless-offline": "^14.4.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6",
"yaml": "^2.8.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/test/**"
]
}
}