-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "nodejs_authen",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon",
"build": "tsc && tsc-alias",
"dev:production": "NODE_ENV=production nodemon ./dist/app.js",
"start": "npm run build && cross-env NODE_ENV=production node dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"joi": "^17.6.3",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.6.0",
"mongoose": "^6.3.3",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"redis": "^4.6.12",
"sharp": "^0.32.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.0",
"validate-image-type": "^3.0.0",
"validator": "^13.7.0",
"zod": "^3.22.4",
"zod-validation-error": "^2.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.8",
"@types/node": "^17.0.32",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.8",
"@types/passport-local": "^1.0.35",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.6.4"
}
}