Skip to content

Instantly share code, notes, and snippets.

@vikramIde
Created February 25, 2018 03:45
Show Gist options
  • Save vikramIde/c7d8f54b20c6760b527c00cd1c5877d1 to your computer and use it in GitHub Desktop.
Save vikramIde/c7d8f54b20c6760b527c00cd1c5877d1 to your computer and use it in GitHub Desktop.
{
"name": "",
"version": "1.0.0",
"private": true,
"scripts": {
"precommit": "npm run -s lint",
"build": "del-cli dist && tsc",
"prestart": "npm run -s build",
"start": "concurrently -k -p \"[{name}]\" -n \"TS,ND\" -c \"cyan,green\" \"tsc -w\" \"nodemon -r dotenv/config app.ts dotenv_config_path=src/.env\" \"babel-node app.ts --presets es2015,stage-2\"",
"lint": "tslint -p tsconfig.json -t stylish"
},
"engines": {
"node": ">=6.10.3"
},
"nodemonConfig": {
"delay": 2000,
"watch": [
"dist"
]
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.0",
"@types/multer": "^1.3.6",
"@types/node": "^4.0.35",
"concurrently": "^3.5.1",
"del-cli": "^1.1.0",
"dotenv": "^5.0.0",
"husky": "^0.14.3",
"nodemon": "^1.14.7",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"multer": "^1.3.0",
"routing-controllers": "^0.7.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment