-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "adminjs-sql",
"version": "1.0.0",
"description": "Raw SQL adapter for AdminJS without ORM",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"dev": "nodemon src/index.ts",
"test:up": "cd ./test && docker compose up -d",
"test": "jest -runInBand",
"test:down": "cd ./test && docker compose down",
"semantic-release": "semantic-release"
},
"keywords": [
"adminjs",
"adapter",
"mysql admin",
"mariadb admin",
"admin panel"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "wirekang <wirekang@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wirekang/adminjs-sql.git"
},
"devDependencies": {
"@types/jest": "^29.0.1",
"@types/node": "^18.7.15",
"jest": "^29.0.3",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.0",
"typescript": "^4.8.3"
},
"dependencies": {
"adminjs": "^6.2.0",
"knex": "^2.3.0"
},
"peerDependencies": {}
}