-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.47 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "passify_server_manager",
"version": "0.0.0",
"description": "passify API Server",
"author": "suhye0n",
"license": "MIT",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "swc src -d dist --source-maps --copy-files",
"build:tsc": "tsc && tsc-alias",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"deploy:prod": "npm run build && pm2 start ecosystem.config.js --only prod",
"deploy:dev": "pm2 start ecosystem.config.js --only dev",
"migration:generate": "sequelize migration:generate --name",
"migration:run": "sequelize db:migrate"
},
"dependencies": {
"@google/maps": "^1.1.3",
"@types/multer": "^1.4.12",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"bcrypt": "^5.0.1",
"bufferutil": "^4.0.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"envalid": "^7.3.1",
"express": "^4.21.1",
"express-session": "^1.18.1",
"firebase-admin": "^12.6.0",
"helmet": "^5.1.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mock-aws-s3": "^4.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nock": "^13.5.5",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.15",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.21.3",
"socket.io": "^4.8.0",
"swagger-cli": "^4.0.4",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0",
"typedi": "^0.10.0",
"utf-8-validate": "^5.0.10",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@swc/cli": "^0.1.65",
"@swc/core": "^1.9.1",
"@types/axios": "^0.14.4",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.2",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.45",
"@types/passport": "^1.0.16",
"@types/passport-apple": "^2.0.3",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-kakao": "^1.0.3",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"node-config": "^0.0.2",
"node-gyp": "^9.1.0",
"nodemon": "^2.0.22",
"pm2": "^5.2.0",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.9.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}