forked from SoftwareBrothers/adminjs-prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.12 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": "@adminjs/prisma",
"version": "3.0.2",
"description": "Prisma adapter for AdminJS",
"keywords": [
"prisma",
"provider",
"adminjs",
"orm admin",
"prisma admin",
"admin panel"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rm -fR lib",
"build": "tsc",
"dev": "yarn clean && tsc -w",
"test": "dotenv -e .env -- jest --config ./jest.json --runInBand --forceExit --detectOpenHandles --verbose",
"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",
"prisma-migrate": "prisma migrate dev --name init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/adminjs-prisma.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Rafał Dzięgielewski <rafal.dzieg@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@prisma/client": "^4.0.0",
"adminjs": ">=6.0.0"
},
"prisma": {
"schema": "spec/prisma/schema.prisma"
},
"optionalDependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@prisma/client": "^4.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^27.0.2",
"@types/node": "12.0.10",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"adminjs": "^6.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^27.2.5",
"pg": "^7.12.1",
"prisma": "^4.0.0",
"semantic-release": "^17.0.7",
"semantic-release-slack-bot": "^1.6.2",
"ts-jest": "^27.0.5",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
}
}