-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "fpl-api-graphql",
"version": "0.0.9",
"description": "A GraphQL node wrapper for the Fantasy Premier League (fantasy.premierleague.com) REST apis.",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"demo": "npm run prepublishOnly && node demo.js",
"lint": "tslint --project tsconfig.json",
"prebuild": "rm -rf ./build/fixtures && ts-node tasks/prebuild/prebuild.ts",
"build": "ts-node tasks/build/build.ts && tsc -p ./src/tsconfig.json",
"prepublishOnly": "rm -rf ./dist && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgreyuk/fpl-api-graphql.git"
},
"author": "Thomas Grey",
"license": "MIT",
"bugs": {
"url": "https://github.com/tgreyuk/fpl-api-graphql/issues"
},
"homepage": "https://github.com/tgreyuk/fpl-api-graphql#readme",
"keywords": [],
"devDependencies": {
"@types/async": "^3.0.2",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.0.0",
"@types/graphql": "^14.2.3",
"@types/jsonfile": "^5.0.0",
"@types/lodash": "^4.14.136",
"@types/pluralize": "0.0.29",
"chalk": "^2.4.2",
"copyfiles": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
"graphql": "^14.4.2",
"graphql-tools": "^4.0.5",
"json-schema-to-typescript": "^7.0.0",
"json-schemify": "0.0.10",
"jsonfile": "^5.0.0",
"lodash": "^4.17.15",
"pluralize": "^8.0.0",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"async": "^3.1.0",
"axios": "^0.19.0",
"dataloader": "^1.4.0",
"humps": "^2.0.1"
}
}