-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.52 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
{
"name": "nestjs-mikro-orm-pageable",
"version": "0.0.1",
"description": "Pageable library for MikroORM repositories in Nest.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"prepublish": "rimraf dist && npm run build",
"test": "jest --testMatch='src/**/*.spec.ts'",
"test:e2e": "jest --config=e2e/jest-e2e.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"pretest:e2e": "npx mikro-orm schema:fresh --run --seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctfdavis/nestjs-mikro-orm-pageable.git"
},
"keywords": [
"nestjs",
"mikro-orm",
"pageable",
"pagination",
"sorting"
],
"author": "Davis Chan <davis.chan@aol.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctfdavis/nestjs-mikro-orm-pageable/issues"
},
"homepage": "https://github.com/ctfdavis/nestjs-mikro-orm-pageable#readme",
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --quiet --cache --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write"
]
},
"devDependencies": {
"@golevelup/ts-jest": "^0.3.7",
"@mikro-orm/cli": "^5.7.7",
"@mikro-orm/core": "^5.7.4",
"@mikro-orm/knex": "^5.7.4",
"@mikro-orm/migrations": "^5.7.7",
"@mikro-orm/nestjs": "^5.1.8",
"@mikro-orm/postgresql": "^5.7.7",
"@mikro-orm/seeder": "^5.7.7",
"@mikro-orm/sqlite": "^5.7.7",
"@nestjs/common": "^9.4.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/swagger": "^6.3.0",
"@types/jest": "^29.5.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./e2e/src/mikro-orm.config.ts"
]
}
}