-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
{
"name": "pfa-api",
"private": true,
"version": "1.0.0",
"description": "The api gateway used for retrieving pro-football-analytics resources",
"main": "dist/index.js",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "run-s build test:*",
"test:lint": "tslint --project . && prettier \"src/**/*.ts\" --check",
"test:unit": "nyc mocha -r ts-node/register src/**/*.{spec,test}.ts --recursive --exit",
"watch": "tsc-watch --onSuccess 'npm start'",
"start": "node ./dist/index.js",
"codegen": "graphql-codegen --config codegen.yml"
},
"watch": {},
"author": "Sean Costello <[email protected]>",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.9.16",
"apollo-server-express": "^2.9.16",
"bluebird": "^3.7.2",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"folktale": "^2.3.2",
"geojson": "^0.5.0",
"graphql": "^14.5.8",
"graphql-iso-date": "^3.6.1",
"graphql-kafka-subscriptions": "^0.3.0",
"graphql-tools": "^4.0.6",
"graphql-type-json": "^0.3.1",
"knex": "^0.20.8",
"lodash.merge": "^4.6.2",
"node-rdkafka": "^2.7.4",
"pg": "^7.17.0",
"ramda": "^0.26.1",
"rxjs": "^6.5.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.11.2",
"@graphql-codegen/introspection": "^1.11.2",
"@graphql-codegen/typescript": "^1.11.2",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^8.0.0",
"@semantic-release/github": "^6.0.0",
"@semantic-release/npm": "^6.0.0",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/chai": "^4.2.7",
"@types/express": "^4.17.2",
"@types/geojson": "^7946.0.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"@types/ramda": "^0.26.39",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"semantic-release": "^16.0.0",
"sinon": "^8.0.4",
"ts-node": "^8.5.4",
"tsc-watch": "^4.1.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.7.4"
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.{spec,test}.js"
]
}
}