-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "graphql-elasticsearch-starter",
"version": "1.0.0",
"description": "Graphql App using Node with typescript, KOA framework. Elasticsearch for dataStore. Middlewares JWT, CORS, Winston Logger.",
"main": "index.js",
"engines": {
"node": "10.11.0"
},
"scripts": {
"build-ts": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "npm run lint && npm run build-ts",
"serve": "ts-node src/index.ts",
"start": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node src/index.ts"
},
"keywords": [
"typescript",
"koa",
"koa2",
"winston",
"rest",
"starter",
"helmet",
"api",
"cors",
"apollo server",
"elasticsearch",
"graphql",
"graphql-compose",
"node",
"axios"
],
"author": "Murtaza Nathani (mudza100@gmail.com)",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/elasticsearch": "^5.0.31",
"@types/koa": "^2.0.48",
"@koa/cors": "^2.2.3",
"@types/koa-helmet": "^3.1.2",
"@types/dotenv": "^6.1.0",
"@types/winston": "^2.4.4",
"axios": "^0.18.0",
"nodemon": "^1.18.7",
"ts-node": "3.3.0",
"tslint": "^5.10.0",
"typescript": "^3.3.3"
},
"dependencies": {
"apollo-server": "^2.4.2",
"apollo-server-koa": "^2.4.2",
"koa": "^2.7.0",
"koa-helmet": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"elasticsearch": "^15.4.1",
"graphql": "^14.1.1",
"graphql-compose": "^5.10.4",
"graphql-compose-elasticsearch": "^2.2.2",
"graphql-resolvers": "^0.3.2",
"graphql-tools": "^4.0.4",
"winston": "^3.2.1"
}
}