-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "graphql-fastify-server",
"type": "commonjs",
"version": "v1.4.29",
"author": "rpvsilva",
"description": "Lightweight GraphQL server for fastify",
"license": "MIT",
"homepage": "https://github.com/rpvsilva/graphql-fastify-server#readme",
"bugs": {
"url": "https://github.com/rpvsilva/graphql-fastify-server/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rpvsilva/graphql-fastify-server.git"
},
"keywords": [
"graphql",
"fastify",
"server"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"build": "webpack build",
"build:types": "dts-bundle-generator --no-banner -o dist/index.d.ts src/types/index.ts",
"build:all": "npm-run-all -s build build:types",
"dev": "npm-run-all --parallel watch:build watch:server",
"watch:build": "webpack --watch",
"watch:server": "nodemon \"./dist/index.js\" --watch \"./dist\"",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts .",
"prepare": "husky || true"
},
"dependencies": {
"@fastify/websocket": "^10.0.0",
"@graphql-tools/schema": "^10.0.2",
"@graphql-tools/utils": "^10.0.11",
"fastify": "^5.0.0",
"graphql": "^16.8.1",
"graphql-jit": "^0.8.0",
"ioredis": "^5.2.4",
"mqemitter": "^6.0.0",
"node-cache": "^5.1.2",
"readable-stream": "^4.2.0",
"tiny-lru": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/node": "^20.10.4",
"@types/readable-stream": "^4.0.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"dts-bundle-generator": "^9.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.25.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"husky": "^9.0.0",
"nodemon": "^3.0.1",
"npm-run-all2": "^6.0.0",
"path": "^0.12.7",
"prettier": "^3.0.0",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^5.3.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}