-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 992 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
40
41
42
43
{
"name": "typeorm-browser-example",
"version": "0.0.1",
"description": "Example how to use TypeORM with TypeScript in the Broswer.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/typeorm/browser-example.git"
},
"bugs": {
"url": "https://github.com/typeorm/browser-example/issues"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"browser-orm",
"typeorm-sample",
"typeorm-example"
],
"devDependencies": {
"http-server": "^0.11.0",
"ts-loader": "^4.4.1",
"typescript": "^2.8.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"@types/node": "9.6.0",
"reflect-metadata": "0.1.12",
"sql.js": "^0.5.0",
"typeorm": "^0.2.7"
},
"scripts": {
"build": "webpack",
"start": "http-server -p 3000 -s index.html"
}
}