-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graphql-api-template",
"version": "1.0.0",
"description": "GraphQl API template for fast setup with best libraries for great developer experience",
"main": "index.js",
"scripts": {
"serve": "nodemon",
"migration": "./node_modules/.bin/ts-node ./node_modules/typeorm/cli.js",
"lint": "eslint --fix src/**/*.ts"
},
"keywords": [],
"author": "Martin Štěpánek",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.25.0",
"@types/graphql": "^14.5.0",
"apollo-metrics": "^1.0.1",
"apollo-server-express": "^2.18.2",
"bufferutil": "^4.0.1",
"class-validator": "^0.12.2",
"dataloader": "^2.0.0",
"google-auth-library": "^6.1.1",
"graphql": "^15.3.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.4",
"prom-client": "^12.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.10.2",
"type-graphql": "^1.0.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.28",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^12.12.64",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^1.19.1",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.9.7"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"printWidth": 120,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}