-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 Bytes
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
{
"name": "pg-apify",
"version": "1.0.4",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/Edsol/pg-apify"
},
"scripts": {
"dev": "bun --env-file=./.env --watch ./example/example.ts",
"build": "./scripts/build.sh"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/graphql": "^14.5.0",
"@types/pg": "^8.11.6",
"dotenv-cli": "^7.4.2",
"express": "^4.19.2",
"http-proxy-middleware": "^3.0.0",
"pg": "^8.12.0",
"postgraphile": "^4.13.0",
"postgraphile-plugin-connection-filter": "^2.3.0"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"resolutions": {
"graphql": "15.8.0"
}
}