forked from typeorm/typescript-express-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1015 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1015 Bytes
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
{
"name": "typeorm-typescript-express-example",
"version": "0.0.1",
"description": "Example how to use Express and 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-express-example.git"
},
"bugs": {
"url": "https://github.com/typeorm/typescript-express-example/issues"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"typeorm-sample",
"typeorm-example",
"typeorm-express-example"
],
"devDependencies": {
"typescript": "^2.1.5"
},
"dependencies": {
"@types/body-parser": "^1.16.0",
"express": "^4.15.2",
"@types/express": "^4.0.35",
"@types/node": "^7.0.4",
"body-parser": "^1.17.1",
"mysql": "^2.12.0",
"reflect-metadata": "^0.1.9",
"typeorm": "0.0.9"
},
"scripts": {
"start": "tsc && node src/index.js"
}
}