-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 KB
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
{
"name": "@nestbolt/sortable",
"version": "0.1.0",
"packageManager": "pnpm@9.15.4",
"description": "Automatic position management and ordering for NestJS entities with TypeORM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:results": "npx vitest run --coverage 2>&1 | grep -E \"All files|%\" | head -10",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"prepublishOnly": "npm run build"
},
"keywords": [
"nestjs",
"sortable",
"ordering",
"position",
"drag-and-drop",
"typeorm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestbolt/sortable"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"@nestjs/event-emitter": "^2.0.0 || ^3.0.0",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"typeorm": "^0.3.0"
},
"peerDependenciesMeta": {
"@nestjs/event-emitter": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@nestjs/typeorm": "^11.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.0",
"better-sqlite3": "^12.8.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0",
"typeorm": "^0.3.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.0"
}
}