-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.26 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.26 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
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
{
"name": "@piggly/fastify-chassis",
"version": "7.6.1",
"description": "An ESM/CommonJS toolkit to help you to do common operations in your back-end applications with Fastify and NodeJS.",
"scripts": {
"clean": "rimraf dist",
"pre:commit": "npm run format && npm run lint && npm run check",
"prebuild": "npm run lint && npm run format",
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json --outDir dist/esm && node ./fixESM.cjs",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json --outDir dist/cjs",
"build:types": "tsc -p tsconfig.types.json && tsc-alias -p tsconfig.types.json --outDir dist/types && node ./fixTypes.cjs",
"check": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write \"./src/**/*.ts\" --log-level warn",
"lint": "eslint --fix ./src/**",
"test": "cross-env NODE_ENV=test jest --coverage --watchAll",
"test:once": "cross-env NODE_ENV=test jest --passWithNoTests",
"test:debug": "cross-env NODE_ENV=test node --inspect ./node_modules/.bin/jest --runInBand",
"preversion": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/cjs/index.js"
},
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"fastify",
"microservices",
"chassis",
"utilities",
"helpers"
],
"author": "caiquearaujo",
"license": "MIT",
"homepage": "https://github.com/piggly-dev/fastify-chassis#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/piggly-dev/fastify-chassis.git"
},
"bugs": {
"url": "https://github.com/piggly-dev/fastify-chassis/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@fastify/cookie": "^11.0.2",
"@fastify/rate-limit": "^10.3.0",
"@piggly/event-bus": "^3.0.0",
"@types/debug": "^4.1.13",
"@types/jest": "^30.0.0",
"@types/module-alias": "^2.0.4",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-prettier": "^5.5.5",
"fastify": "^5.8.5",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"zod": "^4.3.6"
},
"dependencies": {
"@piggly/ddd-toolkit": "^5.3.1",
"@piggly/event-bus": "^3.0.0",
"debug": "^4.4.3",
"fastify": "^5.8.5",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@fastify/cookie": ">=11.0"
}
}