-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 717 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nodejs-graphql-server-envelop",
"version": "1.0.0",
"description": "Minimal Node.js GraphQL server using Envelop for plugin-based extensions, with GraphiQL UI and TypeScript support",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts"
},
"keywords": ["nodejs", "graphql", "typescript", "graphiql", "envelop", "plugin", "api", "server", "graphql-server", "minimal"],
"author": "",
"license": "ISC",
"dependencies": {
"@envelop/core": "^5.4.0",
"@envelop/validation-cache": "^10.0.0",
"graphql": "^16.12.0"
},
"devDependencies": {
"@types/node": "^24.10.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}