-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "fitness-training-apps",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"dev": "npx nodemon",
"test": "npx jest",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"generate-doc": "swagger-cli bundle docs/v1/_index.yaml --outfile docs/v1/_build/swagger.yaml --type yaml",
"format": "eslint src/**/*.ts --fix",
"postinstall": "yarn run build"
},
"keywords": [],
"author": "Ali Akkas",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1501.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.4",
"express-winston": "^4.2.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^7.3.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"request-ip": "^3.3.0",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1",
"winston-elasticsearch": "0.10.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.451.0",
"@types/bcryptjs": "^2.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.11",
"@types/node": "^20.2.5",
"@types/request-ip": "^0.0.38",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.7",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.6.4",
"mongodb-memory-server": "^8.15.1",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}