-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.35 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
{
"name": "adminjs-fastify",
"version": "0.1.0",
"description": "This is a plugin which integrates AdminJS with Fastify framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rm -rf dist && tsc --watch",
"build": "rm -rf dist && tsc",
"example": "ts-node examples/simple.ts",
"lint": "eslint './**/*.ts'"
},
"keywords": [
"fastify",
"plugin",
"admin",
"adminjs",
"admin-panel"
],
"author": "Damir Yusipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/udamir/adminjs-fastify/issues"
},
"homepage": "https://github.com/udamir/adminjs-fastify#readme",
"dependencies": {
"@fastify/session": "^6.2.0",
"adminjs": "^5.2.1",
"fastify": "^3.21.6",
"fastify-cookie": "^5.3.1",
"fastify-formbody": "^5.1.0",
"fastify-multipart": "^5.0.0",
"mime": "^2.5.2"
},
"devDependencies": {
"@adminjs/mongoose": "^2.0.0",
"@types/mime": "^2.0.3",
"@types/mongoose": "^5.10.1",
"@types/node": "^16.10.1",
"mongoose": "^6.0.7",
"nodemon": "^2.0.6",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.1.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}