-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.73 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
{
"name": "@adminjs/objection",
"version": "2.0.3",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"require": "./lib/index.js"
}
},
"license": "MIT",
"description": "ObjectionJS adapter for AdminJS",
"author": "Rafał Dzięgielewski <[email protected]>",
"keywords": [
"objection",
"objectionjs",
"adminjs",
"orm admin",
"objectionjs admin",
"knex",
"knex admin",
"admin panel"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"dev": "yarn clean && tsc -w",
"lint": "eslint './src/**/*.{ts,js}'",
"release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"adminjs": "^7.0.0",
"knex": "^2.4.2",
"objection": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"adminjs": "^7.0.0",
"dotenv-cli": "^7.0.0",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.2.5",
"knex": "^2.4.2",
"objection": "^3.0.1",
"rimraf": "^4.3.1",
"semantic-release": "^20.1.1",
"semantic-release-slack-bot": "^4.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"sqlstring": "^2.3.3"
}
}