-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.89 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@constructive-io/graphql-server",
"version": "4.6.1",
"author": "Constructive <developers@constructive.io>",
"description": "Constructive GraphQL Server",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"dev": "ts-node src/run.ts",
"dev:watch": "nodemon --watch src --ext ts --exec ts-node src/run.ts",
"debug:memory:analyze": "node scripts/analyze-debug-logs.mjs",
"debug:heap:capture": "node scripts/capture-heap-snapshot.mjs",
"lint": "eslint . --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"bucket:create": "ts-node src/scripts/create-bucket.ts"
},
"keywords": [
"server",
"graphql",
"express",
"constructive",
"backend"
],
"dependencies": {
"@constructive-io/graphql-env": "workspace:^",
"@constructive-io/graphql-types": "workspace:^",
"@constructive-io/s3-utils": "workspace:^",
"@constructive-io/upload-names": "workspace:^",
"@constructive-io/url-domains": "workspace:^",
"@graphile-contrib/pg-many-to-many": "2.0.0-rc.1",
"@graphile/simplify-inflection": "8.0.0-rc.3",
"@pgpmjs/env": "workspace:^",
"@pgpmjs/logger": "workspace:^",
"@pgpmjs/server-utils": "workspace:^",
"@pgpmjs/types": "workspace:^",
"@pgsql/quotes": "^17.1.0",
"cors": "^2.8.6",
"deepmerge": "^4.3.1",
"express": "^5.2.1",
"gql-ast": "workspace:^",
"grafast": "1.0.0-rc.7",
"grafserv": "1.0.0-rc.6",
"graphile-build": "5.0.0-rc.4",
"graphile-build-pg": "5.0.0-rc.5",
"graphile-cache": "workspace:^",
"graphile-config": "1.0.0-rc.5",
"graphile-settings": "workspace:^",
"graphile-utils": "5.0.0-rc.5",
"graphql": "^16.13.0",
"graphql-upload": "^13.0.0",
"lru-cache": "^11.2.6",
"multer": "^2.1.0",
"pg": "^8.19.0",
"pg-cache": "workspace:^",
"pg-env": "workspace:^",
"pg-query-context": "workspace:^",
"pg-sql2": "5.0.0-rc.4",
"postgraphile": "5.0.0-rc.7",
"postgraphile-plugin-connection-filter": "3.0.0-rc.1",
"request-ip": "^3.3.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1001.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/graphql-upload": "^8.0.12",
"@types/multer": "^2.0.0",
"@types/pg": "^8.18.0",
"@types/request-ip": "^0.0.41",
"graphile-test": "workspace:*",
"makage": "^0.1.10",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2"
}
}