neura-express-app
Version:
Basic express application starter with some common utilities.
70 lines (69 loc) • 1.91 kB
JSON
{
"name": "neura-express-app",
"version": "1.3.5",
"description": "Basic express application starter with some common utilities.",
"keywords": [
"express-starter",
"express-typescript-starter",
"express",
"express starter"
],
"author": "Dusan Djordjevic <theneura@live.com>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/djordjevicDusan/neura-express-app.git"
},
"scripts": {
"build": "tsc --pretty",
"clean": "rimraf lib",
"lint": "eslint \"src/**/*.ts\"",
"test": "yarn test:e2e",
"test:e2e": "jest --config ./test/e2e/jest-e2e.json",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn test && yarn lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"http-terminator": "^3.2.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/bunyan-format": "^0.2.5",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "4.0.0",
"typescript": "^4.8.3"
}
}