-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "graphql-ts-boilerplate",
"version": "1.0.0",
"description": "graphql-ts-boilerplate",
"main": "src/index.ts",
"scripts": {
"test": "yarn lint && NODE_PATH=src/ mocha --require ts-node/register --timeout 100000 src/**/test.ts --exit --files",
"coverage": "nyc --reporter=html --reporter=text --reporter=lcov yarn test",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint './src/**/*.ts' --quiet --fix",
"build": "swc ./src --out-dir dist",
"start": "NODE_PATH=src/ nodemon --exec ts-node src/index.ts",
"on": "NODE_ENV=production; NODE_PATH=dist/ node dist/index.js",
"codegen": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pukuba/graphql-ts-boilerplate.git"
},
"keywords": [
"boilerplate"
],
"author": "pukuba",
"license": "MIT",
"bugs": {
"url": "https://github.com/pukuba/graphql-ts-boilerplate/issues"
},
"homepage": "https://github.com/pukuba/graphql-ts-boilerplate#readme",
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.6.2",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-core": "^3.7.0",
"apollo-server-express": "^3.5.0",
"bcryptjs": "^2.4.3",
"body-parser-graphql": "^1.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"fs": "0.0.1-security",
"fs-capacitor": "^7.0.1",
"graphql": "^16.3.0",
"graphql-constraint-directive": "^2.2.0",
"graphql-depth-limit": "^1.1.0",
"graphql-middleware": "^6.0.10",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-relay": "^0.10.0",
"graphql-scalars": "^1.14.1",
"graphql-upload": "^12.0.0",
"graphql-validation-complexity": "^0.4.2",
"graphql-voyager": "^1.0.0-rc.31",
"http": "0.0.1-security",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.30",
"mongodb": "^3.6.3",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"ts-pattern": "^4.0.2",
"typedi": "^0.10.0",
"zod": "^3.17.3",
"~": "link:./src"
},
"resolutions": {
"graphql-upload": "^11.0.0"
},
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/schema-ast": "^2.4.1",
"@graphql-codegen/typescript": "^2.4.10",
"@graphql-codegen/typescript-resolvers": "^2.5.2",
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.145",
"@types/bcryptjs": "^2.4.2",
"@types/bson": "^4.2.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/graphql-depth-limit": "^1.1.2",
"@types/graphql-upload": "^8.0.7",
"@types/ioredis": "^4.28.8",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^9.1.1",
"@types/mongodb": "^3.6.3",
"@types/redis": "^2.8.30",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"supertest": "^6.1.6",
"ts-mocha": "^8.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"nyc": {
"exclude": ".yarn"
},
"packageManager": "[email protected]"
}