-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.82 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cypherconvo",
"version": "1.0.0",
"main": "./dist/index.js",
"repository": "[email protected]:muttaqin1/CypherConv.git",
"author": "muttaqin1 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --quiet --clear --rs -r tsconfig-paths/register ./src/index.ts",
"prod": "NODE_ENV=PRODUCTION node ./dist/index.js",
"unit-test": "jest --testPathPattern=tests/unit",
"integration-test": "jest --testPathPattern=tests/integration",
"build": "tsc && tsc-alias"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jest": "29.4.0",
"@types/jsonwebtoken": "9.0.1",
"@types/lodash": "4.14.195",
"@types/luxon": "3.2.0",
"@types/morgan": "1.9.4",
"@types/multer": "1.4.7",
"@types/node": "18.13.0",
"@types/nodemailer": "6.4.7",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "4.1.3",
"@types/uuid": "9.0.1",
"@types/yamljs": "0.2.31",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"eslint": "8.35.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.1.2",
"morgan": "1.10.0",
"prettier": "2.8.4",
"supertest": "6.3.3",
"swagger-ui-dist": "5.9.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.8.6",
"tsconfig-paths": "4.2.0",
"typescript": "4.9.5"
},
"dependencies": {
"bcryptjs": "2.4.3",
"cloudinary": "1.35.0",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"deps": "^1.0.0",
"dotenv": "16.0.3",
"express": "4.18.2",
"express-rate-limit": "6.7.0",
"helmet": "6.0.1",
"inversify": "^6.0.2",
"inversify-express-utils": "6.4.3",
"joi": "17.8.3",
"joi-password-complexity": "5.1.0",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"luxon": "3.2.1",
"multer": "1.4.5-lts.1",
"mysql2": "3.1.2",
"nodemailer": "6.9.1",
"reflect-metadata": "^0.1.13",
"sequelize": "6.29.0",
"socket.io": "4.6.1",
"swagger-express-ts": "^1.1.0",
"swagger-ui-express": "4.6.3",
"uuid": "9.0.0",
"winston": "3.8.2",
"winston-daily-rotate-file": "4.7.1",
"yamljs": "0.3.0"
},
"lint-staged": {
"*.+(ts)": "eslint --fix",
"*.+(ts|json|md)": "prettier --config .prettierrc --write ."
},
"overrides": {
"swagger-express-ts": {
"@types/compression": "1.7.2",
"helmet": "6.0.1",
"inversify": "^6.0.2",
"inversify-express-utils": "6.4.3"
}
}
}