-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "admin-bro-typeorm",
"version": "0.1.6-alpha.9",
"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": "tslint -c tslint.json './{src,spec}/**/*.ts'",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arteha/admin-bro-typeorm.git"
},
"author": "Artem Zabolotnyi <[email protected]>",
"license": "MIT",
"peerDependencies": {
"admin-bro": ">=1.6.0-beta.11",
"admin-bro-expressjs": ">=0.4.0",
"typeorm": ">=0.2.21"
},
"optionalDependencies": {},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "12.0.10",
"admin-bro": "^1.6.0-beta.11",
"admin-bro-expressjs": "^0.4.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",
"tslint": "^5.20.0",
"typeorm": "^0.2.21",
"typescript": "^3.6.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}