-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "typeorm-db",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukeWlodarczyk/TypeORM-Database.git"
},
"author": "Luke",
"license": "ISC",
"bugs": {
"url": "https://github.com/LukeWlodarczyk/TypeORM-Database/issues"
},
"homepage": "https://github.com/LukeWlodarczyk/TypeORM-Database#readme",
"dependencies": {
"apollo-server-express": "^2.1.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"merge-graphql-schemas": "^1.5.7",
"pg": "^7.5.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.8"
},
"devDependencies": {
"@types/express": "^4.16.0",
"nodemon": "^1.18.4",
"ts-node": "3.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "2.5.2",
"@types/node": "^8.0.29"
}
}