@domisoft/todo-clean-architecture
Version:
todo project following uncle bob clean architecture patterns
48 lines (47 loc) • 1.3 kB
JSON
{
"name": "@domisoft/todo-clean-architecture",
"version": "1.0.11",
"description": "todo project following uncle bob clean architecture patterns",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"test-watch": "jest --watchAll --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"start": "npm run build && node lib/app/main.app"
},
"repository": {
"type": "git",
"url": "https://github.com/pnowak2/todo-clean-architecture"
},
"author": "Piotr Nowak",
"license": "ISC",
"keywords": [
"Clean",
"Architecture"
],
"dependencies": {
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.16",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.3"
}
}