-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 2 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
{
"name": "carpe-diem-be",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "nodemon --exec ts-node src/app.ts",
"copy-files": "cp -r src/public/ dist/public/",
"build": "tsc",
"start": "node dist/app.js",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json",
"deploy:production": "node ./dist/app.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.266.0",
"@socket.io/admin-ui": "^0.5.1",
"@types/multer-s3": "^3.0.0",
"app-root-path": "^3.1.0",
"body-parser": "^1.20.1",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-mysql-session": "^2.1.8",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"reflect-metadata": "^0.1.13",
"s3-streamlogger": "^1.7.0",
"sequelize": "^6.28.0",
"socket.io": "^4.6.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.0",
"typedi": "^0.10.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.19",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}