first
Showing
.dockerignore
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
Dockerfile
0 → 100644
LICENSE
0 → 100644
index.ts
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "nicot", | |||
"description": "Nest.js interacting with class-validator + OpenAPI + TypeORM for Nest.js Restful API development.", | |||
"version": "1.0.0", | |||
"main": "dist/index.js", | |||
"types": "dist/index.d.ts", | |||
"scripts": { | |||
"lint": "eslint --fix .", | |||
"build": "rimraf dist && npm run build", | |||
"test": "jest --passWithNoTests", | |||
"start": "node dist/index.js" | |||
}, | |||
"repository": { | |||
"type": "git", | |||
"url": "https://code.mycard.moe/3rdeye/nicot.git" | |||
}, | |||
"author": "Nanahira <nanahira@momobako.com>", | |||
"license": "MIT", | |||
"keywords": [], | |||
"bugs": { | |||
"url": "https://code.mycard.moe/3rdeye/nicot/issues" | |||
}, | |||
"homepage": "https://code.mycard.moe/3rdeye/nicot", | |||
"jest": { | |||
"moduleFileExtensions": [ | |||
"js", | |||
"json", | |||
"ts" | |||
], | |||
"rootDir": "tests", | |||
"testRegex": ".*\\.spec\\.ts$", | |||
"transform": { | |||
"^.+\\.(t|j)s$": "ts-jest" | |||
}, | |||
"collectCoverageFrom": [ | |||
"**/*.(t|j)s" | |||
], | |||
"coverageDirectory": "../coverage", | |||
"testEnvironment": "node" | |||
}, | |||
"devDependencies": { | |||
"@types/jest": "^28.1.5", | |||
"@types/lodash": "^4.14.182", | |||
"@types/node": "^18.0.4", | |||
"@typescript-eslint/eslint-plugin": "^4.33.0", | |||
"@typescript-eslint/parser": "^4.33.0", | |||
"eslint": "^7.32.0", | |||
"eslint-config-prettier": "^8.5.0", | |||
"eslint-plugin-prettier": "^3.4.1", | |||
"jest": "^28.1.3", | |||
"prettier": "^2.7.1", | |||
"rimraf": "^3.0.2", | |||
"ts-jest": "^28.0.6", | |||
"typescript": "^4.7.4" | |||
}, | |||
"peerDependencies": { | |||
"@nestjs/common": "^9.0.3", | |||
"@nestjs/swagger": "^6.0.4", | |||
"class-transformer": "^0.5.1", | |||
"class-validator": "^0.13.2", | |||
"typeorm": "^0.3.7" | |||
}, | |||
"dependencies": { | |||
"lodash": "^4.17.21" | |||
} | |||
} |
src/bases/id-base.ts
0 → 100644
src/bases/index.ts
0 → 100644
src/bases/time-base.ts
0 → 100644
src/crud-base.ts
0 → 100644
This diff is collapsed.
src/decorators/access.ts
0 → 100644
src/decorators/index.ts
0 → 100644
src/decorators/merge.ts
0 → 100644
src/decorators/pipes.ts
0 → 100644
src/decorators/property.ts
0 → 100644
src/decorators/restful.ts
0 → 100644
src/dto/import-entry.ts
0 → 100644
src/dto/index.ts
0 → 100644
src/dto/page-settings.ts
0 → 100644
src/dto/return-message.ts
0 → 100644
src/utility/bigint.ts
0 → 100644
src/utility/index.ts
0 → 100644
src/utility/insert-field.ts
0 → 100644
src/utility/query.ts
0 → 100644
tests/sample.spec.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment