-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "Just a simple GraphQL server from zero to villain",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"start": "node ./dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahiensed/graphql-server.git"
},
"keywords": [
"Node",
"TypeScript",
"GraphQL",
"Apollo"
],
"author": "Douglas Bahiense @bahiensed",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahiensed/graphql-server/issues"
},
"homepage": "https://github.com/bahiensed/graphql-server#readme",
"devDependencies": {
"@eslint/js": "^9.10.0",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"dependencies": {
"@apollo/server": "^4.11.0",
"@graphql-tools/mock": "^9.0.4",
"@graphql-tools/schema": "^10.0.6",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6"
}
}