This repository was archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.92 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.92 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
79
80
81
82
{
"name": "nodejs-graphql-template",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "yarn clean && yarn copy:graphql && yarn lint -- --force && run-p copy:graphql:watch lint:watch build:watch",
"build": "yarn clean && yarn lint && tsc && yarn copy:graphql",
"build:watch": "node node_modules/tsc-watch --onSuccess \"node build/server.js\"",
"test": "yarn test:all",
"test:integration": "yarn validate:env && jest --config jest/integration.config.js",
"test:unit": "yarn validate:env && jest --config jest/unit.config.js",
"test:all": "yarn validate:env && jest",
"test:e2e": "yarn validate:env-e2e && jest --config jest/e2e.config.js",
"lint": "tslint -t stylish 'src/**/*.ts'",
"lint:watch": "chokidar \"src/**/*.ts\" -c \"tslint -t stylish --force '{path}'\"",
"validate:env": "tsc src/env.ts --lib esnext --esModuleInterop --outDir ./build/ && node ./build/env.js",
"validate:env-e2e": "tsc jest/__setup__/e2e-env-test.ts --lib esnext --esModuleInterop --outDir ./build/e2e && node ./build/e2e/e2e-env-test.js",
"clean": "rimraf build",
"clean:graphql": "rimraf build/**/*.{gql,graphql,graphqls}",
"copy:graphql": "cpx \"src/**/*.{gql,graphql,graphqls}\" build",
"copy:graphql:watch": "chokidar \"./src/**/*.{gql,graphql,graphqls}\" -c \"yarn clean:graphql && yarn copy:graphql && touch src/server.ts\"",
"docker-mount": "docker-share mount -t",
"gqlgen": "graphqlgen"
},
"engines": {
"node": ">= 8.1.4"
},
"dependencies": {
"apollo-server-koa": "1.3.6",
"bluebird": "3.5.3",
"chalk": "2.4.2",
"envalid": "4.1.4",
"flashheart": "2.9.0",
"graphql": "14.0.2",
"graphql-cost-analysis": "1.0.2",
"graphql-import": "0.7.1",
"graphql-playground-middleware-koa": "1.6.8",
"graphql-tools": "4.0.3",
"graphql-voyager": "1.0.0-rc.26",
"koa": "2.6.2",
"koa-bodyparser": "4.2.1",
"koa-convert": "1.2.0",
"koa-cors": "0.0.16",
"koa-heartbeat": "0.1.2",
"koa-router": "7.4.0",
"lodash": "4.17.11",
"moment": "2.23.0",
"source-map-support": "0.5.9",
"winston": "3.1.0"
},
"devDependencies": {
"@types/bluebird": "3.5.25",
"@types/graphql": "14.0.4",
"@types/jest": "23.3.12",
"@types/koa": "2.0.48",
"@types/koa-router": "7.0.37",
"@types/nock": "9.3.0",
"apollo-cache-inmemory": "1.3.12",
"apollo-client": "2.4.8",
"apollo-link-http": "1.5.9",
"cash-touch": "0.2.0",
"chokidar-cli": "1.2.1",
"cpx": "1.5.0",
"docker-share": "0.0.4",
"graphql-tag": "2.10.0",
"graphqlgen": "0.5.0",
"isomorphic-fetch": "2.2.1",
"jest": "23.6.0",
"jest-junit": "6.0.0",
"nock": "10.0.6",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"ts-jest": "23.10.5",
"tsc-watch": "1.0.31",
"tslint": "5.12.1",
"tslint-config-airbnb": "5.11.1",
"typescript": "3.2.2"
},
"jest-junit": {
"output": "./reports/test/junit.xml"
}
}