feat: add app code
Showing
.gitignore
0 → 100644
Dockerfile
0 → 100644
dist/app.controller.d.ts
0 → 100644
dist/app.controller.js
0 → 100644
dist/app.controller.js.map
0 → 100644
dist/app.module.d.ts
0 → 100644
dist/app.module.js
0 → 100644
dist/app.module.js.map
0 → 100644
dist/app.service.d.ts
0 → 100644
dist/app.service.js
0 → 100644
dist/app.service.js.map
0 → 100644
dist/auth/auth.constants.js
0 → 100644
dist/auth/auth.controller.js
0 → 100644
dist/auth/auth.guard.d.ts
0 → 100644
dist/auth/auth.guard.js
0 → 100644
dist/auth/auth.guard.js.map
0 → 100644
dist/auth/auth.module.d.ts
0 → 100644
dist/auth/auth.module.js
0 → 100644
dist/auth/auth.module.js.map
0 → 100644
dist/auth/auth.service.d.ts
0 → 100644
dist/auth/auth.service.js
0 → 100644
dist/auth/local.strategy.js
0 → 100644
dist/hello/hello.module.d.ts
0 → 100644
dist/hello/hello.module.js
0 → 100644
dist/hello/hello.service.js
0 → 100644
dist/item/item.controller.js
0 → 100644
dist/item/item.entity.d.ts
0 → 100644
dist/item/item.entity.js
0 → 100644
dist/item/item.entity.js.map
0 → 100644
dist/item/item.module.d.ts
0 → 100644
dist/item/item.module.js
0 → 100644
dist/item/item.module.js.map
0 → 100644
dist/item/item.service.d.ts
0 → 100644
dist/item/item.service.js
0 → 100644
dist/main.d.ts
0 → 100644
dist/main.js
0 → 100644
dist/main.js.map
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
dist/users/users.module.d.ts
0 → 100644
dist/users/users.module.js
0 → 100644
dist/users/users.service.js
0 → 100644
nest-cli.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "store-b", | ||
"version": "0.0.1", | ||
"description": "", | ||
"author": "", | ||
"private": true, | ||
"license": "UNLICENSED", | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "nest build", | ||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
"start": "nest start", | ||
"start:dev": "nest start --watch", | ||
"start:debug": "nest start --debug --watch", | ||
"start:prod": "node dist/main", | ||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:cov": "jest --coverage", | ||
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | ||
"test:e2e": "jest --config ./test/jest-e2e.json" | ||
}, | ||
"dependencies": { | ||
"@nestjs/common": "^9.0.0", | ||
"@nestjs/core": "^9.0.0", | ||
"@nestjs/jwt": "^9.0.0", | ||
"@nestjs/passport": "^9.0.0", | ||
"@nestjs/platform-express": "^9.0.0", | ||
"@nestjs/serve-static": "^3.0.0", | ||
"@nestjs/typeorm": "^9.0.1", | ||
"passport": "^0.6.0", | ||
"passport-jwt": "^4.0.0", | ||
"passport-local": "^1.0.0", | ||
"pg": "^8.8.0", | ||
"reflect-metadata": "^0.1.13", | ||
"rimraf": "^3.0.2", | ||
"rxjs": "^7.2.0", | ||
"typeorm": "^0.3.10" | ||
}, | ||
"devDependencies": { | ||
"@nestjs/cli": "^9.0.0", | ||
"@nestjs/schematics": "^9.0.0", | ||
"@nestjs/testing": "^9.0.0", | ||
"@types/express": "^4.17.13", | ||
"@types/jest": "28.1.8", | ||
"@types/node": "^16.0.0", | ||
"@types/passport-jwt": "^3.0.6", | ||
"@types/passport-local": "^1.0.34", | ||
"@types/supertest": "^2.0.11", | ||
"@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.0.0", | ||
"jest": "28.1.3", | ||
"prettier": "^2.3.2", | ||
"source-map-support": "^0.5.20", | ||
"supertest": "^6.1.3", | ||
"ts-jest": "28.0.8", | ||
"ts-loader": "^9.2.3", | ||
"ts-node": "^10.0.0", | ||
"tsconfig-paths": "4.1.0", | ||
"typescript": "^4.7.4" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"ts" | ||
], | ||
"rootDir": "src", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node" | ||
} | ||
} |
src/app.controller.spec.ts
0 → 100644
src/app.controller.ts
0 → 100644
src/app.module.ts
0 → 100644
src/app.service.ts
0 → 100644
src/auth/auth.constants.ts
0 → 100644
src/auth/auth.controller.ts
0 → 100644
src/auth/auth.module.ts
0 → 100644
src/auth/auth.service.ts
0 → 100644
src/auth/local.strategy.ts
0 → 100644
src/hello/hello.module.ts
0 → 100644
src/hello/hello.service.ts
0 → 100644
src/item/item.controller.ts
0 → 100644
src/item/item.entity.ts
0 → 100644
src/item/item.module.ts
0 → 100644
src/item/item.service.ts
0 → 100644
src/main.ts
0 → 100644
src/users/users.module.ts
0 → 100644
src/users/users.service.ts
0 → 100644
test/app.e2e-spec.ts
0 → 100644
test/jest-e2e.json
0 → 100644
tsconfig.build.json
0 → 100644
tsconfig.json
0 → 100644
views/index.hbs
0 → 100644
This diff is collapsed.
Please register or sign in to comment