-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
117 lines (117 loc) · 3.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@nestjs-library/crud",
"version": "0.12.9",
"description": "Automatically generate CRUD Rest API based on NestJS and TypeOrm",
"homepage": "https://github.com/woowabros/nestjs-library-crud",
"repository": {
"type": "git",
"url": "https://github.com/woowabros/nestjs-library-crud"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"engines": {},
"license": "MIT",
"keywords": [
"NestJS",
"CRUD",
"TypeORM",
"REST API",
"Swagger",
"Decorator"
],
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"type-check": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.spec.json",
"format-check": "prettier --check --ignore-path .gitignore \"**/*.+(ts|json|js)\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.+(ts|json|js)\"",
"format:all": "prettier -w -l .",
"lint": "eslint .",
"docker-compose-up:test": "docker-compose -f docker-compose.test.yml --env-file .env.test up -d",
"docker-compose-down:test": "docker-compose -f docker-compose.test.yml --env-file .env.test down",
"test": "jest --runInBand --forceExit",
"test:ci": "yarn docker-compose-up:test && yarn test && yarn docker-compose-down:test",
"build": "rm -rf dist/* && tsc -p tsconfig.cjs.json && tsc -p tsconfig.mjs.json",
"release": "release-it"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@nestjs/common": "^10.2.10",
"@nestjs/core": "^10.2.10",
"@nestjs/platform-express": "^10.2.10",
"@nestjs/swagger": "^7.1.17",
"@nestjs/typeorm": "^10.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"qs": "6.13.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@nestjs/testing": "^10.2.10",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "22.5.2",
"@types/qs": "^6.9.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"commitizen": "^4.3.0",
"commitlint": "^19.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "~9.9.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.0.10",
"jest": "29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.0",
"mongodb-memory-server": "^10.0.0",
"mysql2": "^3.6.5",
"pg": "^8.11.3",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"sqlite3": "^5.1.6",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.10.0"
}
}