-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.89 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
{
"name": "typeorm-typescript-example",
"version": "0.0.1",
"description": "Example how to use TypeORM with TypeScript.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "pleerock.me@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/typeorm/typescript-example.git"
},
"bugs": {
"url": "https://github.com/typeorm/typescript-example/issues"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"typeorm-sample",
"typeorm-example"
],
"devDependencies": {
"@types/node": "^9.6.5",
"typescript": "^3.3.3333"
},
"dependencies": {
"mysql": "^2.15.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.15"
},
"scripts": {
"start0": "tsc && node src/sample0-start/app.js",
"start1": "tsc && node src/sample1-simple-entity/app.js",
"start2": "tsc && node src/sample2-one-to-one/app.js",
"start3": "tsc && node src/sample3-many-to-one/app.js",
"start4": "tsc && node src/sample4-many-to-many/app.js",
"start5": "tsc && node src/sample5-subscribers/app.js",
"start6": "tsc && node src/sample6-abstract-table/app.js",
"start7": "tsc && node src/sample7-pagination/app.js",
"start8": "tsc && node src/sample8-self-referencing/app.js",
"start9": "tsc && node src/sample9-entity-listeners/app.js",
"start10": "tsc && node src/sample10-mixed/app.js",
"start11": "tsc && node src/sample11-all-types-entity/app.js",
"start12": "tsc && node src/sample12-custom-naming-strategy/app.js",
"start13": "tsc && node src/sample13-everywhere-abstraction/app.js",
"start14": "tsc && node src/sample14-errors-in-wrong-metdata/app.js",
"start15": "",
"start16": "tsc && node src/sample16-indexes/app.js",
"start17": "tsc && node src/sample17-versioning/app.js",
"start18": "tsc && node src/sample18-lazy-relations/app.js",
"start19": "tsc && node src/sample19-one-side-relations/app.js",
"start20": "tsc && node src/sample20-join-without-relation/app.js",
"start21": "tsc && node src/sample21-custom-join-table-column/app.js",
"start22": "tsc && node src/sample22-closure-table/app.js",
"start23": "tsc && node src/sample23-nested-joins/app.js",
"start24": "tsc && node src/sample24-schemas/app.js",
"start25": "tsc && node src/sample25-insert-from-inverse-side/app.js",
"start26": "tsc && node src/sample26-embedded-tables/app.js",
"start27": "tsc && node src/sample27-composite-primary-keys/app.js",
"start28": "tsc && node src/sample28-single-table-inheritance/app.js",
"start29": "tsc && node src/sample30-default-order-by/app.js",
"start30": "tsc && node src/sample31-table-prefix/app.js",
"start31": "tsc && node src/sample32-migrations/app.js",
"start32": "tsc && node src/sample33-custom-repository/app.js",
"typeorm": "./node_modules/.bin/typeorm "
}
}