-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "graphql-fpl-api",
"author": "Austin Musiku",
"version": "1.0.0",
"description": "A GraphQL wrapper for the official Fantasy Premier League REST API",
"main": "src/index.ts",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "concurrently \"cross-env NODE_ENV=development nodemon src/index.ts\" \"yarn codegen --watch\"",
"build": "tsc && cp -r src/typeDefs/ dist/",
"lint": "eslint --ext .ts src",
"codegen": "graphql-codegen --config codegen.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.5.13",
"@graphql-tools/load": "^7.8.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dataloader": "^2.1.0",
"dotenv": "16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-yoga": "^3.1.1",
"node-cache": "^5.1.2",
"node-fetch": "2"
},
"devDependencies": {
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/typescript": "2.8.5",
"@graphql-codegen/typescript-resolvers": "2.7.10",
"@graphql-eslint/eslint-plugin": "^3.13.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"concurrently": "^7.6.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}