-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "funpi",
"version": "6.2.5",
"description": "funpi(放屁) - 像放屁一样简单又自然的Node.js接口开发框架",
"type": "module",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": "./funpi.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"format": "prettier --write .",
"inspect": "eslint --inspect-config"
},
"keywords": [
"fastify",
"nodejs",
"api"
],
"files": [
"apis/",
"bootstrap/",
"config/",
"plugins/",
"schema/",
"scripts/",
"tables/",
".gitignore",
".npmrc",
".prettierignore",
".prettier",
"check.js",
"eslint.config.js",
"funpi.js",
"LICENSE",
"package.json",
"README.md",
"util.js"
],
"engines": {
"node": ">=20.6.0"
},
"author": "chensuiyi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chenbimo/funpi"
},
"homepage": "https://chensuiyi.me",
"dependencies": {
"@fastify/autoload": "^6.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/jwt": "^9.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/rate-limit": "^10.1.0",
"@fastify/static": "^8.0.1",
"@fastify/swagger": "^9.1.0",
"@fastify/swagger-ui": "^5.0.1",
"ajv": "^8.17.1",
"ajv-i18n": "^4.2.0",
"bull": "^4.16.3",
"croner": "^8.1.2",
"es-toolkit": "^1.23.0",
"fast-xml-parser": "^4.5.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"http-graceful-shutdown": "^3.1.13",
"ioredis": "^5.4.1",
"knex": "^3.1.0",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.15",
"picocolors": "^1.1.0",
"picomatch": "^4.0.2",
"safe-stable-stringify": "^2.5.0",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0",
"yidash": "^1.8.1"
},
"devDependencies": {
"@eslint/config-inspector": "^0.5.4",
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}