-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 904 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
35
36
37
38
39
{
"name": "typeorm-cockroachdb-example",
"version": "0.0.1",
"description": "Example project to demonstrate TypeORM with CockroachDB.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/typeorm/cockroachdb-example.git"
},
"bugs": {
"url": "https://github.com/typeorm/typescript-example/issues"
},
"tags": [
"orm",
"typescript",
"cockroachdb",
"typescript-orm",
"typeorm-sample",
"typeorm-example"
],
"devDependencies": {
"@types/node": "^14.11.5",
"typescript": "^4.0.3"
},
"dependencies": {
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.28"
},
"scripts": {
"start": "tsc && node dist/index.js",
"typeorm": "./node_modules/.bin/typeorm "
}
}