|
1 | | -{ |
2 | | - "name": "nestjs-rest-api-templete", |
3 | | - "version": "0.0.2", |
4 | | - "description": "", |
5 | | - "author": "", |
6 | | - "private": true, |
7 | | - "license": "UNLICENSED", |
8 | | - "scripts": { |
9 | | - "lint": "eslint", |
10 | | - "lint:fix": "eslint --fix", |
11 | | - "typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js", |
12 | | - "entity:sync": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:sync", |
13 | | - "entity:drop": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:drop", |
14 | | - "seed:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:run", |
15 | | - "seed:revert": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:revert", |
16 | | - "prebuild": "rimraf dist", |
17 | | - "build": "nest build", |
18 | | - "prestart": "npm run lint && npm run build", |
19 | | - "start": "node dist/src/main", |
20 | | - "start:dev": "nest start --watch", |
21 | | - "start:debug": "nest start --debug --watch", |
22 | | - "test": "jest", |
23 | | - "test:e2e": "jest --config ./test/jest.e2e.ts -i", |
24 | | - "test:e2e:auto": "npm run test:entity:drop && npm run test:entity:sync && npm run test:seed:run && npm run test:e2e:debug", |
25 | | - "test:debug": "jest --verbose", |
26 | | - "test:e2e:debug": "jest --config ./test/jest.e2e.ts -i --verbose", |
27 | | - "test:cov": "jest --coverage", |
28 | | - "test:entity:sync": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:sync", |
29 | | - "test:entity:drop": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:drop", |
30 | | - "test:seed:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:run", |
31 | | - "test:seed:revert": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:revert", |
32 | | - "test:docker:up": "docker-compose -f docker-compose.test.yml up -d", |
33 | | - "test:docker:down": "docker-compose -f docker-compose.test.yml down" |
34 | | - }, |
35 | | - "dependencies": { |
36 | | - "@aws-sdk/client-s3": "^3.717.0", |
37 | | - "@nestjs/common": "^10.4.15", |
38 | | - "@nestjs/config": "^3.3.0", |
39 | | - "@nestjs/core": "^10.4.15", |
40 | | - "@nestjs/jwt": "^10.2.0", |
41 | | - "@nestjs/mapped-types": "^2.0.6", |
42 | | - "@nestjs/passport": "^10.0.3", |
43 | | - "@nestjs/platform-express": "^10.4.15", |
44 | | - "@nestjs/swagger": "^8.1.0", |
45 | | - "@nestjs/typeorm": "^10.0.2", |
46 | | - "@slack/webhook": "^7.0.4", |
47 | | - "@types/uuid": "^10.0.0", |
48 | | - "bcrypt": "^5.1.1", |
49 | | - "class-transformer": "^0.5.1", |
50 | | - "class-validator": "^0.14.1", |
51 | | - "compression": "^1.7.5", |
52 | | - "cookie-parser": "^1.4.7", |
53 | | - "express-session": "^1.18.1", |
54 | | - "helmet": "^8.0.0", |
55 | | - "nest-winston": "^1.9.7", |
56 | | - "passport": "^0.7.0", |
57 | | - "passport-github2": "^0.1.12", |
58 | | - "passport-google-oauth20": "^2.0.0", |
59 | | - "passport-jwt": "^4.0.1", |
60 | | - "passport-kakao": "^1.0.1", |
61 | | - "passport-local": "^1.0.0", |
62 | | - "passport-naver-v2": "^2.0.8", |
63 | | - "typeorm": "^0.3.20", |
64 | | - "typeorm-naming-strategy": "^2.0.12", |
65 | | - "typeorm-transactional": "^0.5.0", |
66 | | - "winston": "^3.17.0", |
67 | | - "winston-daily-rotate-file": "^5.0.0" |
68 | | - }, |
69 | | - "devDependencies": { |
70 | | - "@nestjs/cli": "^10.4.9", |
71 | | - "@nestjs/schematics": "^10.2.3", |
72 | | - "@nestjs/testing": "^10.4.15", |
73 | | - "@types/bcrypt": "^5.0.2", |
74 | | - "@types/compression": "^1.7.5", |
75 | | - "@types/cookie-parser": "^1.4.8", |
76 | | - "@types/express": "^5.0.0", |
77 | | - "@types/express-session": "^1.18.1", |
78 | | - "@types/jest": "^29.5.14", |
79 | | - "@types/multer": "^1.4.12", |
80 | | - "@types/multer-s3": "^3.0.3", |
81 | | - "@types/node": "^22.10.2", |
82 | | - "@types/passport": "^1.0.17", |
83 | | - "@types/passport-github2": "^1.2.9", |
84 | | - "@types/passport-google-oauth20": "^2.0.16", |
85 | | - "@types/passport-jwt": "^4.0.1", |
86 | | - "@types/passport-kakao": "^1.0.3", |
87 | | - "@types/passport-local": "^1.0.38", |
88 | | - "@types/prompts": "^2.4.9", |
89 | | - "@types/supertest": "^6.0.2", |
90 | | - "eslint": "^9.17.0", |
91 | | - "eslint-config-prettier": "^9.1.0", |
92 | | - "eslint-plugin-jest": "^28.10.0", |
93 | | - "eslint-plugin-prettier": "^5.2.1", |
94 | | - "jest": "^29.7.0", |
95 | | - "prettier": "^3.4.2", |
96 | | - "supertest": "^7.0.0", |
97 | | - "ts-jest": "^29.2.5", |
98 | | - "ts-loader": "^9.5.1", |
99 | | - "ts-node": "^10.9.2", |
100 | | - "tsconfig-paths": "^4.2.0", |
101 | | - "typescript": "^5.7.2", |
102 | | - "typescript-eslint": "^8.18.2" |
103 | | - } |
104 | | -} |
| 1 | +{ |
| 2 | + "name": "nestjs-rest-api-templete", |
| 3 | + "version": "0.0.2", |
| 4 | + "description": "", |
| 5 | + "author": "", |
| 6 | + "private": true, |
| 7 | + "license": "UNLICENSED", |
| 8 | + "scripts": { |
| 9 | + "lint": "eslint", |
| 10 | + "lint:fix": "eslint --fix", |
| 11 | + "typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js", |
| 12 | + "entity:sync": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:sync", |
| 13 | + "entity:drop": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:drop", |
| 14 | + "seed:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:run", |
| 15 | + "seed:revert": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:revert", |
| 16 | + "prebuild": "rimraf dist", |
| 17 | + "build": "nest build", |
| 18 | + "prestart": "npm run lint && npm run build", |
| 19 | + "start": "node dist/src/main", |
| 20 | + "start:dev": "nest start --watch", |
| 21 | + "start:debug": "nest start --debug --watch", |
| 22 | + "test": "jest", |
| 23 | + "test:e2e": "jest --config ./test/jest.e2e.ts -i", |
| 24 | + "test:e2e:auto": "npm run test:entity:drop && npm run test:entity:sync && npm run test:seed:run && npm run test:e2e:debug", |
| 25 | + "test:debug": "jest --verbose", |
| 26 | + "test:e2e:debug": "jest --config ./test/jest.e2e.ts -i --verbose", |
| 27 | + "test:cov": "jest --coverage", |
| 28 | + "test:entity:sync": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:sync", |
| 29 | + "test:entity:drop": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts schema:drop", |
| 30 | + "test:seed:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:run", |
| 31 | + "test:seed:revert": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d bin/ormconfig.ts migration:revert", |
| 32 | + "test:docker:up": "docker-compose -f docker-compose.test.yml up -d", |
| 33 | + "test:docker:down": "docker-compose -f docker-compose.test.yml down" |
| 34 | + }, |
| 35 | + "dependencies": { |
| 36 | + "@aws-sdk/client-s3": "^3.717.0", |
| 37 | + "@nestjs/common": "^10.4.15", |
| 38 | + "@nestjs/config": "^3.3.0", |
| 39 | + "@nestjs/core": "^10.4.15", |
| 40 | + "@nestjs/jwt": "^10.2.0", |
| 41 | + "@nestjs/mapped-types": "^2.0.6", |
| 42 | + "@nestjs/passport": "^10.0.3", |
| 43 | + "@nestjs/platform-express": "^10.4.15", |
| 44 | + "@nestjs/swagger": "^8.1.0", |
| 45 | + "@nestjs/typeorm": "^10.0.2", |
| 46 | + "@slack/webhook": "^7.0.4", |
| 47 | + "@types/uuid": "^10.0.0", |
| 48 | + "bcrypt": "^5.1.1", |
| 49 | + "class-transformer": "^0.5.1", |
| 50 | + "class-validator": "^0.14.1", |
| 51 | + "compression": "^1.7.5", |
| 52 | + "cookie-parser": "^1.4.7", |
| 53 | + "express-session": "^1.18.1", |
| 54 | + "helmet": "^8.0.0", |
| 55 | + "nest-winston": "^1.9.7", |
| 56 | + "passport": "^0.7.0", |
| 57 | + "passport-github2": "^0.1.12", |
| 58 | + "passport-google-oauth20": "^2.0.0", |
| 59 | + "passport-jwt": "^4.0.1", |
| 60 | + "passport-kakao": "^1.0.1", |
| 61 | + "passport-local": "^1.0.0", |
| 62 | + "passport-naver-v2": "^2.0.8", |
| 63 | + "typeorm": "^0.3.20", |
| 64 | + "typeorm-naming-strategy": "^2.0.12", |
| 65 | + "typeorm-transactional": "^0.5.0", |
| 66 | + "winston": "^3.17.0", |
| 67 | + "winston-daily-rotate-file": "^5.0.0" |
| 68 | + }, |
| 69 | + "devDependencies": { |
| 70 | + "@nestjs/cli": "^10.4.9", |
| 71 | + "@nestjs/schematics": "^10.2.3", |
| 72 | + "@nestjs/testing": "^10.4.15", |
| 73 | + "@types/bcrypt": "^5.0.2", |
| 74 | + "@types/compression": "^1.7.5", |
| 75 | + "@types/cookie-parser": "^1.4.8", |
| 76 | + "@types/express": "^5.0.0", |
| 77 | + "@types/express-session": "^1.18.1", |
| 78 | + "@types/jest": "^29.5.14", |
| 79 | + "@types/multer": "^1.4.12", |
| 80 | + "@types/multer-s3": "^3.0.3", |
| 81 | + "@types/node": "^22.10.2", |
| 82 | + "@types/passport": "^1.0.17", |
| 83 | + "@types/passport-github2": "^1.2.9", |
| 84 | + "@types/passport-google-oauth20": "^2.0.16", |
| 85 | + "@types/passport-jwt": "^4.0.1", |
| 86 | + "@types/passport-kakao": "^1.0.3", |
| 87 | + "@types/passport-local": "^1.0.38", |
| 88 | + "@types/prompts": "^2.4.9", |
| 89 | + "@types/supertest": "^6.0.2", |
| 90 | + "eslint": "^9.17.0", |
| 91 | + "eslint-config-prettier": "^9.1.0", |
| 92 | + "eslint-plugin-jest": "^28.10.0", |
| 93 | + "eslint-plugin-prettier": "^5.2.1", |
| 94 | + "jest": "^29.7.0", |
| 95 | + "prettier": "^3.4.2", |
| 96 | + "supertest": "^7.0.0", |
| 97 | + "ts-jest": "^29.2.5", |
| 98 | + "ts-loader": "^9.5.1", |
| 99 | + "ts-node": "^10.9.2", |
| 100 | + "tsconfig-paths": "^4.2.0", |
| 101 | + "typescript": "^5.7.2", |
| 102 | + "typescript-eslint": "^8.18.2" |
| 103 | + } |
| 104 | +} |
0 commit comments