-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 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
62
63
64
65
66
67
68
{
"name": "developic-ver2-server",
"version": "1.0.0",
"main": "index.js",
"author": "wongeun",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=800 tsc",
"start":"pm2 start ecosystem.config.js --env production",
"win-start": "cross-env NODE_ENV=production sudo pm2 start build/app.js"
},
"dependencies": {
"@types/express-session": "^1.17.3",
"aws-sdk": "^2.922.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-random-string": "3.3.0",
"dotenv-flow": "^3.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^2.2.5",
"nodemailer": "^6.5.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-local": "^1.0.0",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/crypto-random-string": "^2.0.0",
"@types/dotenv-flow": "^3.1.0",
"@types/express": "^4.17.11",
"@types/hpp": "^0.2.1",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/multer-s3": "^2.7.9",
"@types/node": "^14.14.37",
"@types/nodemailer": "^6.4.1",
"@types/passport": "^1.0.6",
"@types/passport-facebook": "^2.1.10",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-kakao": "^0.2.0",
"@types/passport-local": "^1.0.33",
"@types/validator": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1"
}
}