-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "reporting-service",
"version": "1.0.0",
"description": "",
"dependencies": {
"aws-lambda": "^1.0.7",
"express": "^4.19.2",
"serverless-http": "^3.2.0",
"mongoose": "^8.5.3"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.144",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^8.6.0",
"prettier": "^3.3.3",
"serverless-offline": "^13.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"scripts": {
"clean": "rm -rf dist build",
"build": "npm run clean && tsc",
"deploy": "serverless deploy -s dev",
"deploy:prod": "serverless deploy -s production",
"offline": "npm run build && serverless offline",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest ."
}
}