forked from SoftwareBrothers/adminjs-fastify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "@adminjs/fastify",
"version": "4.1.2",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
}
},
"private": false,
"repository": "[email protected]:mzahidriaz/adminjs-fastify",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint './src/**/*'",
"check:all": "yarn lint && yarn build"
},
"peerDependencies": {
"adminjs": "^7.4.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/busboy": "^1.5.0",
"@types/jest": "^26.0.15",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"adminjs": "^7.4.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"semantic-release": "^20.1.3",
"semantic-release-slack-bot": "^4.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.5.0",
"@fastify/session": "^10.1.1",
"fastify": "^4.15.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35"
}
}