-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"name": "admin-bro-fastify",
"version": "0.0.1",
"description": "Fastify adapter for Admin Bro",
"main": "lib/index.js",
"author": "Szymon Bartczak",
"license": "MIT",
"scripts": {
"start:example": "ts-node examples/simple.ts",
"release": "semantic-release",
"build": "tsc",
"lint": "eslint './src/**/*' './examples/**/*' --ignore-pattern '*.json' --ignore-pattern 'yarn.lock'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"admin-bro": ">=4.0.1",
"fastify": ">=3.15.1",
"fastify-cookie": ">=5.3.1",
"fastify-formbody": ">=5.0.0",
"fastify-multipart": ">=4.0.6",
"fastify-session": ">=5.2.1",
"fastify-static": ">=4.2.2"
},
"devDependencies": {
"@admin-bro/mongoose": "^1.1.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/git": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"admin-bro": ">=4.0.1",
"connect-mongo": "^4.4.1",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"express-session": "^1.17.2",
"fastify": "^3.15.1",
"fastify-cookie": "^5.3.1",
"fastify-formbody": "^5.0.0",
"fastify-multipart": "^4.0.6",
"fastify-session": "^5.2.1",
"fastify-static": "^4.2.2",
"husky": "^4.2.5",
"mongoose": "^5.12.10",
"semantic-release": "^17.0.7",
"semantic-release-slack-bot": "^1.6.2",
"typescript": "^4.2.4"
}
}