-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
{
"name": "typeorm-basic-usage",
"version": "1.0.0",
"description": "TypeGraphQL basic usage example complete project",
"main": "index.ts",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch '**/*.ts' --exec 'ts-node' index.ts",
"test": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RubenPozoMolina/typeorm-basic-usage.git"
},
"keywords": [
"TypeGraphQL",
"example",
"typeorm",
"graphql",
"mysql"
],
"author": "Rubén Pozo",
"license": "ISC",
"bugs": {
"url": "https://github.com/RubenPozoMolina/typeorm-basic-usage/issues"
},
"homepage": "https://github.com/RubenPozoMolina/typeorm-basic-usage#readme",
"dependencies": {
"@types/graphql": "^14.2.2",
"@types/node": "^12.6.1",
"apollo-server": "^2.6.7",
"graphql": "^14.4.2",
"mysql": "^2.17.1",
"reflect-metadata": "^0.1.13",
"tslint-config-prettier": "^1.18.0",
"type-graphql": "^0.17.4",
"typedi": "^0.8.0",
"typeorm": "^0.2.18",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3"
}
}