Initial Commit

This commit is contained in:
seedorf_s1
2020-11-13 09:09:21 +01:00
commit 5a56fc26d2
50 changed files with 5038 additions and 0 deletions

50
package.json Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "template-nodejs-express",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"debug": "tsc-watch --onSuccess \"node --enable-source-maps --use-openssl-ca --unhandled-rejections=strict ./out/index\"",
"build": "tsc",
"production": "node --use-openssl-ca --unhandled-rejections=strict ./out/index",
"install-debug": "npm install && npm run build",
"install-prod": "npm install --only=dev && npm install --only=prod && npm run build && rm -r node_modules && npm install --only=prod",
"install-prod-win": "npm install --only=dev && npm install --only=prod && npm run build && rmdir /Q/S node_modules && npm install --only=prod"
},
"dependencies": {
"connect-redis": "^5.0.0",
"cookie-parser": "~1.4.4",
"env-var": "^6.3.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"json-prune": "^1.1.0",
"node-fetch": "^2.6.1",
"node-sass-middleware": "0.11.0",
"proper-url-join": "^2.1.1",
"pug": "^3.0.0",
"redis": "^3.0.2",
"uuid": "^8.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/connect-redis": "0.0.15",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.1",
"@types/http-errors": "^1.8.0",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@types/node-sass-middleware": "0.0.31",
"@types/proper-url-join": "^2.0.0",
"@types/redis": "^2.8.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-promise": "^4.2.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.5"
}
}