-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 954 Bytes
/
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
{
"name": "type-orm-uml-sample",
"version": "1.0.0",
"description": "TypeORM の Extension の typeorm-uml を利用して ER 図を出力するサンプル",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index",
"build": "tsc",
"db:diagram": "typeorm-uml --download=er-diagram.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ore88ore/type-orm-uml-sample.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ore88ore/type-orm-uml-sample/issues"
},
"homepage": "https://github.com/ore88ore/type-orm-uml-sample#readme",
"dependencies": {
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@types/node": "^16.3.1",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typeorm-uml": "^1.6.4",
"typescript": "^4.3.5"
}
}