-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.2 KB
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
{
"name": "graphql-server",
"version": "1.0.0",
"repository": "git@github.com:eddeee888/graphql-server-template.git",
"author": "Eddy Nguyen <ch@eddeee888.me>",
"license": "MIT",
"private": true,
"scripts": {
"start:server": "tsx watch --clear-screen=false src/index.ts",
"start:codegen": "graphql-codegen --watch",
"start:test": "tsx --test --watch src/**/*.spec.ts",
"dev": "run-p -l start:codegen start:server",
"test": "run-p -l start:codegen start:test",
"test:once": "tsx --test src/**/*.spec.ts",
"codegen": "graphql-codegen",
"build": "tsc",
"lint": "eslint .",
"format": "prettier . --write"
},
"dependencies": {
"@graphql-yoga/plugin-defer-stream": "3.16.0",
"graphql": "16.11.0",
"graphql-scalars": "1.25.0",
"graphql-yoga": "5.18.0"
},
"devDependencies": {
"@eddeee888/eslint-plugin": "1.0.1",
"@eddeee888/gcg-typescript-resolver-files": "0.16.0",
"@graphql-codegen/cli": "7.1.3",
"@graphql-typed-document-node/core": "3.2.0",
"@parcel/watcher": "2.5.1",
"@types/node": "22.18.12",
"eslint": "9.38.0",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}