-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "adminjs-adonis",
"version": "1.2.0",
"description": "AdonisJS plugin & adapter for AdminJS",
"main": "build/providers/AdminProvider.js",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"lint": "eslint . --ext=.ts --fix",
"compile": "yarn lint && yarn format && yarn build",
"build": "yarn ts build.ts",
"prepublishOnly": "yarn compile && yarn make:changelog",
"format": "prettier --write .",
"prepare": "husky install",
"make:changelog": "conventional-changelog -i CHANGELOG.md -s",
"ts": "node -r @adonisjs/require-ts/build/register",
"test": "yarn ts tests",
"coverage": "c8 yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chirgjin/adminjs-adonis.git"
},
"keywords": [
"AdminJS",
"AdonisJS",
"Adonis",
"Admin"
],
"author": "chirgjin",
"license": "MIT",
"bugs": {
"url": "https://github.com/chirgjin/adminjs-adonis/issues"
},
"homepage": "https://github.com/chirgjin/adminjs-adonis#readme",
"devDependencies": {
"@adonisjs/assembler": "^5.9.5",
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.3.0",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.13",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@japa/assert": "^1.3.6",
"@japa/run-failed-tests": "^1.1.0",
"@japa/runner": "^2.2.2",
"@japa/spec-reporter": "^1.3.2",
"@poppinss/dev-utils": "^2.0.3",
"@trivago/prettier-plugin-sort-imports": "^2.0.0",
"@types/node": "^18.11.10",
"@types/sinon": "^10.0.13",
"adminjs": "^6.7.0",
"c8": "^7.12.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"mrm": "^4.1.13",
"node-mocks-http": "^1.12.1",
"prettier": "^2.8.0",
"reflect-metadata": "^0.1.13",
"sinon": "^15.0.0",
"sqlite3": "^5.1.2",
"typescript": "^4.9.3"
},
"files": [
"build/src",
"build/providers",
"build/adonis-typings",
"build/templates"
],
"mrmConfig": {},
"adonisjs": {
"types": "adminjs-adonis",
"providers": [
"adminjs-adonis"
],
"templates": {
"config": [
{
"src": "config.txt",
"dest": "adminjs"
}
]
}
},
"typings": "./build/adonis-typings/index.d.ts",
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}