-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "fastify-decorators-parent",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "yarn workspaces run build",
"lint": "eslint .",
"test": "yarn workspaces run test",
"license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause\" --excludePrivatePackages",
"prepare": "husky"
},
"directories": {
"doc": "./docs",
"example": "./examples",
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/L2jLiga/fastify-decorators.git"
},
"author": "Andrey Chalkin <L2jLiga@gmail.com> (https://github.com/L2jLiga)",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@prettier/plugin-xml": "^3.4.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.13",
"@types/node": "~20.12.14",
"cross-env": "^7.0.3",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"fastify": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-resolve": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"license-checker": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.23.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"engines": {
"node": "^18.18.0 || > 20.0.0",
"yarn": "^1.0.0"
},
"resolutions": {
"@types/node": "~20.12.14",
"eslint": "^9.11.1"
},
"workspaces": [
"lib",
"plugins/*",
"examples/*"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}