forked from dziraf/admin-bro-mikroorm
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.25 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@adminjs/mikroorm",
"description": "MikroORM adapter for AdminJS",
"keywords": [
"mikroorm",
"provider",
"adminjs",
"orm admin",
"mikroorm admin",
"admin panel"
],
"author": "Rafał Dzięgielewski <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"require": "./lib/index.js"
}
},
"version": "4.0.0",
"license": "MIT",
"scripts": {
"clean": "rm -fR lib",
"build": "tsc",
"dev": "yarn clean && tsc -w",
"test": "NODE_OPTIONS=--experimental-vm-modules dotenv -c '.env' -- jest --config ./jest.json --runInBand --detectOpenHandles --forceExit",
"ts-node": "ts-node",
"lint": "eslint './src/**/*.{ts,js}' './spec/**/*.{ts,js}' './example-app/**/*.{ts,js}' --ignore-pattern 'build' --ignore-pattern 'yarn.lock'",
"check:all": "yarn lint && yarn test && yarn build",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/adminjs-mikroorm.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@mikro-orm/core": "^6.1.7",
"adminjs": "^7.7.0"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@jest/globals": "^29.5.0",
"@mikro-orm/core": "^6.1.7",
"@mikro-orm/postgresql": "^6.1.7",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"adminjs": "^7.7.0",
"class-validator": "^0.14.0",
"dotenv-cli": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^5.2.0",
"jest": "^29.7.0",
"reflect-metadata": "^0.1.13",
"semantic-release": "^20.1.1",
"semantic-release-slack-bot": "^4.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.3.3",
"uuid": "^9.0.0"
}
}