-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "react-boiler-plate",
"version": "1.0.0",
"description": "react boiler plate",
"main": "index.js",
"engine": {
"node": "10.16.0",
"npm": "6.9.0"
},
"scripts": {
"start": "node server/index.js",
"deploy": "cross-env NODE_ENV=production PORT=5000 pm2 start server/index.js -i 0",
"backend": "ts-node-dev server/index.js",
"frontend": "npm run start --prefix client",
"build": "tsc -p tsconfig.json",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
},
"author": "John ahn",
"license": "ISC",
"dependencies": {
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"aws-sdk": "^2.874.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"connect-redis": "^5.1.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"hpp": "^0.2.3",
"http": "0.0.1-security",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.5.0",
"passport": "^0.4.1",
"passport-kakao": "^1.0.1",
"pm2": "^4.5.5",
"qs": "^6.10.1",
"react-redux": "^5.0.7",
"redis": "^3.1.0",
"sanitize-html": "^2.3.3",
"saslprep": "^1.0.3",
"socket.io": "^4.0.0",
"socket.io-redis": "^6.1.0",
"supports-color": "^7.1.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.36",
"concurrently": "^4.1.0",
"nodemon": "^1.19.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youseop/NeverEndingStory.git"
},
"bugs": {
"url": "https://github.com/youseop/NeverEndingStory/issues"
},
"homepage": "https://github.com/youseop/NeverEndingStory#readme"
}