This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (137 loc) · 4.56 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@strider/graphql-boilerplate",
"version": "1.0.0",
"description": "GraphQL boilerplate made with Koa, type-graphql and typeORM",
"keywords": [
"boilerplate",
"graphql",
"koa",
"type-graphql",
"typeORM",
"starter"
],
"homepage": "https://github.com/GrayStrider/graphql-boilerplate-playground",
"bugs": "https://github.com/GrayStrider/graphql-boilerplate-playground/issues",
"private": true,
"author": {
"name": "Strider",
"email": "[email protected]",
"url": "https://github.com/GrayStrider"
},
"main": "index.js",
"license": "MIT",
"repository": "github:GrayStrider/graphql-boilerplate-playground",
"engines": {
"node": ">=0.10.3 < 0.12",
"npm": "~1.0.20"
},
"scripts": {
"start:dev": "yarn start:dev:file src/index.ts",
"test:typecheck": "tsc --noEmit",
"start": "cross-env NODE_ENV=production ts-node --transpile-only -r tsconfig-paths/register src/index.ts",
"start:dev:file": "ts-node-dev --respawn --transpile-only --ignore-watch .spec -r tsconfig-paths/register",
"start:test": "cross-env NODE_ENV=test ts-node --transpile-only -r tsconfig-paths/register src/index.ts",
"test": "yarn test:coverage && yarn lint:all:fix && yarn codegen && yarn test:typecheck",
"test:CI": "yarn test && cat ./test/coverage/lcov.info | codacy-coverage",
"test:all": "jest --forceExit --detectOpenHandles --runInBand",
"test:e2e": "yarn test:all --config test/jest.config.e2e.js",
"test:unit": "yarn test:all --config test/jest.config.unit.js",
"test:coverage": "yarn test:all --coverage",
"lint:all": "eslint -c .eslintrc.style.yml . --ext .ts",
"lint:all:fix": "yarn lint:all --fix",
"lint:staged": "eslint -c .eslintrc.style.yml --fix",
"codegen": "graphql-codegen"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"apollo-datasource-rest": "^0.7.0",
"apollo-server-errors": "^2.3.4",
"apollo-server-koa": "^2.10.0",
"axios": "^0.19.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"class-validator": "0.11.0",
"config": "^3.2.5",
"cross-env": "^6.0.3",
"dataloader": "^2.0.0",
"graphql": "^14.5.8",
"graphql-import": "^1.0.0-4821645.0",
"graphql-query-complexity": "^0.4.1",
"graphql-redis-subscriptions": "^2.1.2",
"graphql-request": "^1.8.2",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.6",
"ioredis": "^4.14.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^5.2.0",
"koa-redis": "^4.0.1",
"koa-router": "^7.4.0",
"koa-session": "^5.13.1",
"lodash": "^4.17.15",
"nodemailer": "^6.4.2",
"pg": "^7.18.1",
"ramda": "^0.26.1",
"ramda-adjunct": "^2.25.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"signale": "^1.4.0",
"tsconfig-paths": "^3.9.0",
"type-graphql": "^0.18.0-beta.10",
"typedi": "^0.8.0",
"typeorm": "^0.2.22",
"typeorm-typedi-extensions": "^0.2.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.12.2",
"@graphql-codegen/introspection": "^1.12.2",
"@graphql-codegen/typescript": "1.12.2",
"@graphql-codegen/typescript-document-nodes": "1.12.0",
"@graphql-codegen/typescript-resolvers": "1.12.2",
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.29",
"@types/chance": "^1.0.8",
"@types/config": "^0.0.36",
"@types/ioredis": "^4.14.7",
"@types/jest": "^25.1.3",
"@types/koa": "^2.11.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^3.1.2",
"@types/koa-redis": "^4.0.0",
"@types/koa-router": "^7.4.0",
"@types/koa-session": "^5.10.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.0",
"@types/jest-expect-message": "^1.0.1",
"jest-expect-message": "^1.0.2",
"@types/ramda": "^0.26.41",
"@types/signale": "^1.2.1",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"codacy-coverage": "^3.4.0",
"chance": "^1.1.4",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.2",
"jest": "^25.1.0",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"tsdef": "^0.0.13",
"typescript": "^3.7.5"
},
"peerDependencies": {
"graphql-subscriptions": "1.0.0",
"tslint": "5.0.0"
}
}