-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "movement-pass-public-api",
"version": "0.1.0",
"private": true,
"main": "build/src/lambda.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/local.ts",
"format": "prettier --check --write ./**/*.{ts,js,json,md,yml,yaml}",
"lint": "eslint ./ --fix",
"test": "jest",
"coverage": "jest --coverage",
"build": "rimraf build && tsc",
"pack": "rimraf dist && ncc build --source-map",
"release": "npm run format && npm run lint && npm run test && npm run build && npm run pack",
"deploy": "npm run release && cdk deploy --require-approval never --profile movement-pass",
"destroy": "cdk destroy --profile movement-pass"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.421.0",
"@aws-sdk/client-s3": "^3.421.0",
"@aws-sdk/client-ssm": "^3.421.0",
"@aws-sdk/lib-dynamodb": "^3.421.0",
"@aws-sdk/s3-request-presigner": "^3.421.0",
"@vendia/serverless-express": "^4.10.4",
"aws-lambda": "^1.0.7",
"aws-xray-sdk": "^3.5.2",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"aws-cdk-lib": "^2.99.1",
"constructs": "^10.2.70",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}