-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2 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
{
"name": "serverless-aution-house",
"version": "1.0.0",
"description": "Auction House Contest Application",
"scripts": {
"lint": "eslint .",
"format": "eslint --fix . && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"test": "jest",
"test:dev": "start-server-and-test dev http://127.0.0.1:4000 'curl --head http://127.0.0.1:4000'",
"deploy": "serverless deploy --stage dev --region us-east-1"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.682.0",
"@aws-sdk/lib-dynamodb": "^3.685.0",
"bcryptjs": "^2.4.3",
"express": "^4.19.1",
"express-async-errors": "^3.1.1",
"express-openapi-validator": "^5.3.9",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.686.0",
"@hey-api/openapi-ts": "^0.53.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitizen": "^4.3.0",
"dotenv-cli": "^7.4.1",
"esbuild": "~0.16.17",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"serverless": "^3.38.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-esbuild": "^1.52.1",
"serverless-offline": "^13.3.3",
"start-server-and-test": "^2.0.3",
"supertest": "^6.3.4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
}
}