-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 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
{
"name": "nem-typescript-v2",
"version": "1.0.0",
"description": "Node.js + Typescript + Express + MongoDB",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register ./**/*.test.ts",
"build": "tsc",
"postinstall": "npm run build",
"background-start": "pm2 start pm2.json",
"heroku-prebuild": "npm install pm2 -g && npm install typescript -g",
"start": "pm2-runtime start pm2.json --env production",
"stop": "pm2 delete pm2.json",
"serve": "nodemon nodemon.json",
"redis": "redis-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andy-0414/NEM-typescript-v2.git"
},
"keywords": [
"Node.js",
"Server"
],
"author": "Andy0414",
"license": "ISC",
"bugs": {
"url": "https://github.com/Andy-0414/NEM-typescript-v2/issues"
},
"homepage": "https://github.com/Andy-0414/NEM-typescript-v2#readme",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/compression": "^1.7.0",
"@types/connect-redis": "0.0.14",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/express-session": "^1.17.0",
"@types/helmet": "0.0.45",
"@types/mocha": "^7.0.2",
"@types/moment-timezone": "^0.5.12",
"@types/mongoose": "^5.7.6",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"@types/passport": "^1.0.3",
"@types/passport-github": "^1.1.5",
"@types/passport-google-oauth20": "^2.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/passport-kakao": "^0.2.0",
"@types/passport-local": "^1.0.33",
"@types/passport-naver": "^0.2.0",
"@types/redis": "^2.8.22",
"@types/socket.io": "^2.1.4",
"@types/supertest": "^2.0.9",
"mocha": "^7.1.2",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.10.2",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^3.0.0",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.21.3",
"jwt-simple": "^0.5.6",
"moment": "^2.29.2",
"moment-timezone": "^0.5.35",
"mongoose": "^5.9.4",
"morgan": "^1.9.1",
"npm": "^6.14.6",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-kakao": "^1.0.0",
"passport-local": "^1.0.0",
"passport-naver": "^1.0.6",
"pm2": "^4.4.0",
"redis": "^3.1.1",
"socket.io": "^2.4.0"
}
}