forked from SoftwareBrothers/adminjs-nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "@adminjs/nestjs",
"version": "6.1.0",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./types/index.d.ts"
}
},
"private": false,
"repository": "[email protected]:SoftwareBrothers/adminjs-nestjs.git",
"license": "MIT",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"lint": "eslint './src/**/*' --ignore-pattern '*.json' --ignore-pattern 'yarn.lock' --ignore-pattern '*.yml'",
"check:all": "yarn lint && yarn build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@nestjs/common": ">=9.0.5",
"@nestjs/core": ">=9.0.5",
"adminjs": "^7.4.0",
"rxjs": "^7.1.0"
},
"devDependencies": {
"@adminjs/express": "^6.1.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@nestjs/common": ">=9.3.10",
"@nestjs/core": ">=9.3.10",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"adminjs": "^7.4.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.2.5",
"rxjs": "^7.8.0",
"semantic-release": "^20.1.3",
"semantic-release-slack-bot": "^4.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/express-session": "^1.17.7",
"reflect-metadata": "^0.1.13"
}
}