-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.92 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
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
{
"name": "@wp-praxis/graphql-api",
"version": "0.1.0",
"description": "GraphQL API server for WP Praxis symbolic workflow execution",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"scripts": {
"dev": "bun run --watch src/server.ts",
"build": "bun build src/server.ts --outdir dist --target bun",
"start": "bun run src/server.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.yml",
"validate-schema": "graphql-inspector validate schema.graphql",
"playground": "bun run --hot client/playground-server.ts"
},
"dependencies": {
"@apollo/server": "^5.5.0",
"@apollo/subgraph": "^2.7.0",
"@graphql-tools/schema": "^10.0.3",
"@graphql-tools/load-files": "^7.0.0",
"graphql": "^16.8.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.15.0",
"dataloader": "^2.2.2",
"pg": "^8.11.3",
"better-sqlite3": "^9.2.2",
"ws": "^8.16.0",
"ioredis": "^5.3.2",
"winston": "^3.11.0",
"uuid": "^9.0.1",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"date-fns": "^3.3.0",
"graphql-scalars": "^1.22.4",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-resolvers": "^4.0.4",
"@graphql-inspector/cli": "^5.0.2",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/pg": "^8.10.9",
"@types/ws": "^8.5.10",
"@types/uuid": "^9.0.7",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/better-sqlite3": "^7.6.8",
"bun-types": "latest",
"typescript": "^5.3.3"
},
"keywords": [
"wp-praxis",
"graphql",
"symbolic-execution",
"workflow",
"api",
"wordpress"
],
"author": "WP Praxis Project",
"license": "AGPL-3.0"
}