1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 14:47:28 +00:00

Fix #305 Update packages to latest (#317)

thx to @samal-rasmussen!
This commit is contained in:
Sámal Rasmussen
2021-02-08 18:37:56 +00:00
committed by GitHub
parent db005fa89b
commit 5381d62a10
8 changed files with 5196 additions and 4356 deletions

View File

@@ -9,90 +9,88 @@
"author": "Bowden Kelly",
"license": "MIT",
"scripts": {
"build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets",
"build-sass": "node-sass src/public/css/main.scss dist/public/css/main.css",
"build-sass": "sass src/public/css/main.scss dist/public/css/main.css",
"build-ts": "tsc",
"build": "npm run build-sass && npm run build-ts && npm run lint && npm run copy-static-assets",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/server.js",
"serve-debug": "nodemon --inspect dist/server.js",
"serve": "node dist/server.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/server.js",
"watch-sass": "node-sass -w src/public/css/main.scss dist/public/css/main.css",
"watch-sass": "sass --watch src/public/css/main.scss dist/public/css/main.css",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w"
"watch-ts": "tsc -w",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\""
},
"dependencies": {
"async": "^3.1.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"@types/mongodb": "3.6.5",
"async": "3.2.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"connect-mongo": "jdesboeufs/connect-mongo#527f9b6cd3d95d9bcd765c9ef9f2b5705611f9f5",
"dotenv": "8.2.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"fbgraph": "^1.4.4",
"lodash": "^4.17.19",
"lusca": "^1.6.1",
"mongoose": "^5.7.5",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-local": "^1.0.0",
"pug": "^2.0.4",
"winston": "^3.2.1"
"express-session": "1.17.1",
"express-validator": "6.9.2",
"fbgraph": "1.4.4",
"lodash": "4.17.20",
"lusca": "1.6.1",
"mongoose": "5.11.15",
"nodemailer": "6.4.17",
"passport": "0.4.1",
"passport-facebook": "3.0.0",
"passport-local": "1.0.0",
"pug": "3.0.0",
"winston": "3.3.3"
},
"devDependencies": {
"@types/async": "^3.0.2",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.3",
"@types/compression": "^1.0.1",
"@types/concurrently": "^4.1.0",
"@types/connect-mongo": "^3.0.0",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-flash": "0.0.1",
"@types/express-session": "^1.15.14",
"@types/jest": "^24.0.23",
"@types/jquery": "^3.3.31",
"@types/lodash": "^4.14.141",
"@types/lusca": "^1.6.1",
"@types/mongoose": "^5.5.18",
"@types/node": "^12.7.8",
"@types/node-sass": "^4.11.0",
"@types/nodemailer": "^6.2.1",
"@types/passport": "^1.0.1",
"@types/passport-facebook": "^2.1.9",
"@types/passport-local": "^1.0.33",
"@types/pug": "^2.0.4",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.44",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.2",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
"@types/async": "3.2.5",
"@types/bcrypt-nodejs": "0.0.31",
"@types/bluebird": "3.5.33",
"@types/body-parser": "1.19.0",
"@types/chai": "4.2.14",
"@types/compression": "1.7.0",
"@types/concurrently": "5.2.1",
"@types/errorhandler": "1.5.0",
"@types/eslint": "7.2.6",
"@types/express": "4.17.11",
"@types/express-flash": "0.0.2",
"@types/express-session": "1.17.3",
"@types/jest": "26.0.20",
"@types/jquery": "3.5.5",
"@types/lodash": "4.14.168",
"@types/lusca": "1.6.2",
"@types/node": "14.14.25",
"@types/nodemailer": "6.4.0",
"@types/passport": "1.0.5",
"@types/passport-facebook": "2.1.10",
"@types/passport-local": "1.0.33",
"@types/pug": "2.0.4",
"@types/request": "2.48.5",
"@types/request-promise": "4.1.47",
"@types/shelljs": "0.8.8",
"@types/supertest": "2.0.10",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"chai": "4.3.0",
"concurrently": "5.3.0",
"eslint": "7.19.0",
"jest": "26.6.3",
"nodemon": "2.0.7",
"sass": "1.32.6",
"shelljs": "0.8.4",
"supertest": "6.1.3",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
}
}
}