28 lines
769 B
JSON
28 lines
769 B
JSON
{
|
|
"name": "node.express.starter",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build:dev": "webpack --config webpack.config.js",
|
|
"dev": "tsc-watch src/index.ts --outDir ./dist --onSuccess 'node ./dist/index.js' --onFailure 'echo Beep! Compilation Failed'"
|
|
},
|
|
"author": "Dr. Patrick Bartsch",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"tsc-watch": "^1.0.26",
|
|
"uglifyjs-webpack-plugin": "^1.1.6",
|
|
"webpack": "^3.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/express": "^4.11.0",
|
|
"bootstrap": "^4.0.0-alpha.6",
|
|
"express": "^4.16.2",
|
|
"jquery": "^3.3.1",
|
|
"ts-loader": "^3.2.0",
|
|
"twig": "^1.12.0",
|
|
"typescript": "^2.6.2"
|
|
}
|
|
}
|