forked from SoftwareBrothers/adminjs-typeorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "@admin-bro/typeorm",
"version": "1.1.2",
"description": "TypeORM adapter for AdminBro",
"keywords": [
"typeorm",
"provider",
"admin-bro",
"orm admin",
"typeorm admin",
"admin panel"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "mocha -r ts-node/register ./spec/**/*.spec.ts",
"ts-node": "ts-node",
"lint": "eslint './src/**/*.{ts,js}' './spec/**/*.{ts,js}' './example-app/**/*.{ts,js}' --ignore-pattern 'build' --ignore-pattern 'yarn.lock'",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoftwareBrothers/admin-bro-typeorm.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Artem Zabolotnyi <[email protected]>",
"license": "MIT",
"peerDependencies": {
"admin-bro": ">=3.0.0",
"typeorm": ">=0.2.1"
},
"optionalDependencies": {},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "12.0.10",
"admin-bro": ">=3.0.0",
"chai": "^4.2.0",
"class-validator": "^0.11.0",
"mocha": "^6.2.2",
"pg": "^7.12.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.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",
"typeorm": "^0.2.1",
"typescript": "^3.6.3",
"semantic-release": "^17.0.7",
"@semantic-release/git": "^9.0.0",
"semantic-release-slack-bot": "^1.6.2",
"husky": "^4.2.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4"
}
}