-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "restapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start:dev": "npm run build && serverless offline",
"test": "jest",
"lint": "eslint . --ext .ts --fix",
"postinstall": "ts-patch install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.391.0",
"@aws-sdk/util-dynamodb": "^3.391.0",
"moment": "^2.29.4",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0",
"typia": "^4.2.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"serverless-offline": "^12.0.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.1.6"
}
}