This repository has been archived by the owner on Sep 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.92 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
{
"name": "learnnode",
"version": "1.0.0",
"description": "Learning node.js ",
"main": "build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently -k -c \"blue,green\" -n tsc,nodemon \"tsc -w\" \"nodemon --delay 3\"",
"start:simple": "node build/app.js",
"build-ts": "tsc",
"postinstall": "npm run build-ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srknzl/LearnNode.git"
},
"engines": {
"node": "10.16.3"
},
"keywords": [
"node-js",
"backend",
"server"
],
"author": "Serkan Özel",
"license": "ISC",
"bugs": {
"url": "https://github.com/srknzl/LearnNode/issues"
},
"homepage": "https://github.com/srknzl/LearnNode#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.29",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/connect-flash": "0.0.34",
"@types/connect-history-api-fallback": "^1.3.3",
"@types/connect-mongodb-session": "0.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.9.36",
"@types/express": "^4.17.2",
"@types/express-serve-static-core": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/express-sslify": "^1.2.1",
"@types/helmet": "0.0.44",
"@types/jsonwebtoken": "^8.3.7",
"@types/mongodb": "^3.3.14",
"@types/mongoose": "^5.5.43",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/multer-s3": "^2.7.7",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^12.12.25",
"@types/node-fetch": "^2.5.4",
"@types/pdfkit": "^0.10.5",
"@types/pug": "^2.0.4",
"@types/request": "^2.48.4",
"@types/sequelize": "^4.28.8",
"@types/uuid": "^3.4.6",
"@types/validator": "^10.11.3",
"concurrently": "^4.1.2",
"nodemon": "^1.19.4",
"style-loader": "^1.1.3",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@sendgrid/mail": "^6.5.0",
"aws-sdk": "^2.608.0",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-history-api-fallback": "^1.6.0",
"connect-mongodb-session": "^2.3.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-sslify": "^1.2.0",
"express-validator": "^6.3.1",
"helmet": "^3.21.2",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.2",
"mongoose": "^5.8.9",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql2": "^1.7.0",
"node-fetch": "^2.6.0",
"npm": "^6.13.6",
"pdfkit": "^0.10.0",
"pug": "^2.0.4",
"reflect-metadata": "^0.1.13",
"s3-proxy": "^1.2.1",
"sequelize": "^5.21.3"
},
"nodemonConfig": {
"watch": [
"build"
],
"ignore": [
"build/data"
],
"exec": "node build/app.js"
}
}