-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install and setup standard and applicable non-standard helmet middlew…
…ares
- Loading branch information
Jonas Verhoelen
committed
May 21, 2019
1 parent
ae39ad9
commit 10efe54
Showing
4 changed files
with
174 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ coverage | |
.vscode | ||
.isomorphic-loader-config.json | ||
.idea | ||
*.iml |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "node-express-typescript-recipes", | ||
"name": "node-express-typescript-boilerplate", | ||
"version": "0.0.1", | ||
"description": "A cookbook full of recipes for developing web apps with Node.js and Express.js in TypeScript", | ||
"main": "service/server/index.ts", | ||
|
@@ -22,28 +22,30 @@ | |
"client:statistics": "NODE_ENV=production webpack --profile --json > service/www/webpack-stats.json && webpack-bundle-analyzer service/www/webpack-stats.json" | ||
}, | ||
"dependencies": { | ||
"express": "^4.16.2", | ||
"compression": "^1.7.2", | ||
"cookie-parser": "^1.4.3", | ||
"http-status-codes": "^1.3.0", | ||
"connect-datadog": "^0.0.6", | ||
"hot-shots": "^4.7.0", | ||
"cookie-parser": "^1.4.3", | ||
"express": "^4.16.2", | ||
"fs-extra": "7.0.1", | ||
"helmet": "^3.18.0", | ||
"hot-shots": "^4.7.0", | ||
"http-status-codes": "^1.3.0", | ||
"supertest": "^3.0.0", | ||
"tslib": "^1.9.3" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "4.1.7", | ||
"@types/chai-as-promised": "7.1.0", | ||
"@types/chai-string": "1.4.1", | ||
"@types/fs-extra": "5.0.0", | ||
"@types/chai-subset": "1.3.1", | ||
"@types/compression": "0.0.35", | ||
"@types/cookie-parser": "1.4.1", | ||
"@types/express": "4.11.1", | ||
"@types/supertest": "2.0.4", | ||
"@types/fs-extra": "5.0.0", | ||
"@types/helmet": "0.0.43", | ||
"@types/mocha": "5.2.5", | ||
"@types/sinon-chai": "3.2.2", | ||
"@types/supertest": "2.0.4", | ||
"@types/webpack": "^4.4.22", | ||
"@types/webpack-dev-middleware": "^2.0.2", | ||
"@types/webpack-hot-middleware": "^2.16.4", | ||
|
@@ -53,18 +55,18 @@ | |
"chai-shallow-deep-equal": "1.4.6", | ||
"chai-string": "1.5.0", | ||
"chai-subset": "1.6.0", | ||
"core-js": "2.6.1", | ||
"expressmocks": "^0.1.3", | ||
"nodemon": "^1.19.0", | ||
"mocha": "5.2.0", | ||
"isomorphic-loader": "^2.0.2", | ||
"mocha-better-spec-reporter": "3.1.0", | ||
"mini-css-extract-plugin": "^0.5.0", | ||
"mocha": "5.2.0", | ||
"mocha-better-spec-reporter": "3.1.0", | ||
"nodemon": "^1.19.0", | ||
"prettier": "^1.9.2", | ||
"sinon": "7.2.2", | ||
"sinon-chai": "3.3.0", | ||
"ts-node": "6.1.1", | ||
"typescript": "3.1.1", | ||
"core-js": "2.6.1", | ||
"webpack": "^4.30.0", | ||
"webpack-bundle-analyzer": "^3.0.3", | ||
"webpack-cli": "^3.2.0", | ||
|
@@ -75,7 +77,7 @@ | |
"author": "Jonas Verhoelen <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:jverhoelen/node-express-typescript-recipes.git" | ||
"url": "[email protected]:jverhoelen/node-express-typescript-boilerplate.git" | ||
}, | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters