-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "ta-na-mao-webapi",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.ts --fix",
"build": "rimraf dist && tsc",
"prepare": "husky",
"dev-user": "nodemon -r tsconfig-paths/register src/functions/user/api/bootstrap/user-api.ts"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint **/*.ts --fix"
]
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/aws-lambda": "8.10.138",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.4.5"
},
"dependencies": {
"aws-lambda": "1.0.7",
"cors": "2.8.5",
"express": "4.19.2",
"mongoose": "^8.4.1",
"nodemon": "3.1.0",
"routing-controllers": "0.10.4",
"routing-controllers-openapi": "4.0.0",
"serverless-http": "3.2.0",
"typedi": "0.10.0"
}
}