forked from SoftwareBrothers/adminjs-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "@reedsy/adminjs-mongoose",
"version": "4.0.0-reedsy-1.0.2",
"description": "Mongoose adapter for adminjs",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"dev": "rm -rf lib && tsc --watch",
"clean": "rm -rf lib",
"build": "tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./test/jest.json --runInBand",
"cover": "jest --config ./test/jest.json --runInBand --coverage",
"lint": "eslint './test/**/*.ts' './src/**/*.ts'",
"check:all": "yarn lint && yarn build && yarn test",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/adminjs-mongoose.git"
},
"author": "Wojciech Krysiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoftwareBrothers/adminjs-mongoose/issues"
},
"homepage": "https://github.com/SoftwareBrothers/adminjs-mongoose#readme",
"peerDependencies": {
"adminjs": "^7.0.0",
"mongoose": ">=5"
},
"dependencies": {
"escape-regexp": "0.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"adminjs": "^7.0.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"factory-girl": "^5.0.4",
"husky": "^4.2.5",
"jest": "^29.5.0",
"mongoose": "^7.0.2",
"semantic-release": "^20.1.3",
"semantic-release-slack-bot": "^4.0.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}