-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 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
79
80
81
82
{
"name": "@ciscode/cachekit",
"version": "1.0.0",
"description": "CacheKit backend module for reusable caching utilities and integrations.",
"author": "CisCode",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CISCODE-MA/CacheKit.git"
},
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:write": "prettier . --write",
"typecheck": "tsc -p tsconfig.json --noEmit",
"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",
"verify": "npm run lint && npm run typecheck && npm run test:cov",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepare": "husky",
"prepublishOnly": "npm run verify && npm run build",
"prepack": "npm run build"
},
"peerDependencies": {
"@nestjs/common": "^10 || ^11",
"@nestjs/core": "^10 || ^11",
"@nestjs/platform-express": "^10 || ^11",
"reflect-metadata": "^0.2.2",
"rxjs": "^7"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.18.0",
"@nestjs/common": "^10.4.0",
"@nestjs/core": "^10.4.0",
"@nestjs/mapped-types": "^2.0.0",
"@nestjs/platform-express": "^10.4.0",
"@nestjs/testing": "^10.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.50.1"
}
}