@pashoo2/clean-architecture-boilerplate
Version:
Clean architecture boilerplate
63 lines (62 loc) • 1.81 kB
JSON
{
"name": "@pashoo2/clean-architecture-boilerplate",
"version": "0.1.0",
"private": false,
"description": "Clean architecture boilerplate",
"main": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es/**/*"
],
"keywords": [
"clean",
"architecture",
"ddd",
"layered",
"architecture",
"frontend",
"typescript"
],
"author": "Pavel Akulich",
"homepage": "https://github.com/pashoo2/clean-architecture-boilerplate/blob/main/docs/README.md",
"license": "ISC",
"scripts": {
"lint": "eslint --resolve-plugins-relative-to .",
"lint:fix": "npm run lint -- --fix",
"lint:gts": "gts lint",
"lint:gts:fix": "npm run fix",
"clean": "gts clean && rm -rf ./es && rm -rf *.tsbuildinfo",
"compile": "tsc --project ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"fix": "gts fix",
"typecheck": "tsc --noEmit",
"prepare": "npm run compile",
"pretest": "npm run typecheck",
"posttest": "npm run lint",
"test": "jest",
"jest": "jest",
"prepublishOnly": "npm run test",
"preversion": "npm run lint",
"version": "npm run fix && git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --out docs src/index.ts",
"build": "npm run test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pashoo2/clean-architecture-boilerplate.git"
},
"bugs": {
"url": "https://github.com/pashoo2/clean-architecture-boilerplate/issues"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"jest": "^27.0.3",
"ts-jest": "27.0.2",
"tsc-alias": "^1.3.6",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "^4.4.0"
}
}