-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 2.11 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
{
"name": "admin-bro-mikroorm",
"description": "MikroORM adapter for AdminBro",
"keywords": [
"mikroorm",
"provider",
"admin-bro",
"orm admin",
"mikroorm admin",
"admin panel"
],
"author": "Rafał Dzięgielewski <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"clean": "rm -fR lib",
"build": "tsc",
"dev": "yarn clean && tsc -w",
"test": "dotenv -e .env -- jest --config ./jest.json --runInBand --forceExit --detectOpenHandles --verbose --silent",
"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/dziraf/admin-bro-mikroorm.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@mikro-orm/core": "^4.5.0",
"admin-bro": "^3.4.0"
},
"dependencies": {
"flat": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@mikro-orm/core": "^4.5.0",
"@mikro-orm/postgresql": "^4.5.1",
"@semantic-release/git": "^9.0.0",
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.36",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"admin-bro": "^3.4.0",
"class-validator": "^0.13.1",
"dotenv-cli": "^4.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4",
"husky": "^5.2.0",
"jest": "^26.6.3",
"reflect-metadata": "^0.1.13",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3",
"uuid": "^8.3.2"
}
}