-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
144 lines (144 loc) · 5.63 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "hackathon-starter-kit",
"version": "1.0.6",
"description": "A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Instagram, Slack), Authorization, and CRUD functionality + PWA Support!",
"main": "dist/server.js",
"scripts": {
"start": "npm run build:dev",
"lint": "./node_modules/.bin/eslint '**/*.ts' --fix --quiet",
"test": "cross-env NODE_ENV=development jest --runInBand --forceExit",
"serve:dev": "cross-env NODE_ENV=development nodemon dist/server.js --public ",
"docker:serve": "cross-env NODE_ENV=development nodemon dist/server.js --public",
"serve:prod": "cross-env NODE_ENV=production ./node_modules/.bin/nodemon app/dist/server.js --public",
"watch-node": "./node_modules/.bin/nodemon dist/server.js",
"watch": "concurrently \"npm run bundle:watch \" \"npm run watch-ts:dev \" \"npm run serve:dev \" --names \"💻,📦\" --prefix name",
"watch:serve": " concurrently \"npm run bundle:watch \" \"npm run serve:prod \" \"npm run watch-ts:prod \" --names \"💻,📦\" --prefix name",
"build-ts:dev": "tsc -p tsconfig.json",
"watch-ts:dev": "tsc -w -p tsconfig.json",
"build-ts:prod": "tsc -p tsconfig-prod.json",
"watch-ts:prod": "tsc -w -p tsconfig-prod.json ",
"serve-debug": "nodemon --inspect dist/server.js",
"copy-assets": "ts-node copy-files.ts",
"serve:watch": "concurrently \"npm run serve:prod\" \"npm run watch-ts\" \"npm run bundle\" --names \"💻,📦\" --prefix name",
"prod": "npm run build-ts:prod && npm run bundle && ts-node copy-files.ts",
"prod:serve": "npm run build-ts:prod && ts-node copy-files.ts && npm run watch:serve",
"bundle:watch": "webpack -w --display-max-modules 0",
"bundle": "webpack --display-max-modules 0",
"build:dev": "npm run build-ts:dev && npm run watch",
"docker:build": "npm run build-ts:prod && npm run bundle && npm run copy-assets",
"pm2": "npm run prod && pm2 start ecosystem.config.js --env production",
"release": "release-it --config .release-it.json --no-npm.publish"
},
"keywords": [],
"author": "Obinna Odirionye",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-recaptcha": "^5.0.1",
"express-session": "^1.16.2",
"express-status-monitor": "^1.2.6",
"express-validator": "^6.0.1",
"helmet": "^3.21.0",
"md5": "^2.2.1",
"mongoose": "^5.6.0",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.9.1",
"nodemailer": "^6.3.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-dropbox-oauth2": "^1.1.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth": "^2.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"passport-slack": "0.0.7",
"passport-twitter": "^1.0.4",
"pug": "^2.0.4",
"shelljs": "^0.8.3",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@release-it/conventional-changelog": "^1.1.0",
"@types/compression": "^0.0.36",
"@types/connect-ensure-login": "^0.1.5",
"@types/connect-flash": "0.0.35",
"@types/connect-mongo": "^0.0.42",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/es6-promisify": "^5.0.0",
"@types/express": "^4.17.0",
"@types/express-flash": "0.0.0",
"@types/express-session": "^1.15.13",
"@types/helmet": "0.0.44",
"@types/jest": "^24.0.18",
"@types/md5": "^2.1.33",
"@types/mongodb": "^3.1.28",
"@types/mongoose": "^5.5.6",
"@types/morgan": "^1.7.37",
"@types/node": "^12.0.10",
"@types/nodemailer": "^6.2.1",
"@types/passport": "^1.0.0",
"@types/passport-discord": "^0.1.3",
"@types/passport-facebook": "^2.1.9",
"@types/passport-github": "^1.1.5",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-linkedin-oauth2": "^1.5.0",
"@types/passport-local": "^1.0.33",
"@types/passport-local-mongoose": "^4.0.12",
"@types/passport-twitter": "^1.0.34",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.8",
"@types/validator": "^10.11.1",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"auto-changelog": "^1.16.1",
"autoprefixer": "^9.4.10",
"babel-core": "6.26.3",
"babel-loader": "8.0.5",
"babel-plugin-transform-util-promisify": "^0.2.2",
"babel-preset-env": "^1.7.0",
"concurrently": "^4.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"pm2": "^3.5.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.17.0",
"release-it": "^12.4.3",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"webpack": "^3.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}