-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "@localrepo/app",
"type": "module",
"private": true,
"scripts": {
"start": "yarn && GRAPHILE_ENV=production yarn run server:express",
"start:production": "GRAPHILE_ENV=production node dist/server-express.js",
"dev": "yarn && GRAPHILE_ENV=development yarn run server:express",
"server:express": "node --experimental-strip-types src/server-express.ts",
"postgraphile": "NODE_OPTIONS=\"--experimental-strip-types\" postgraphile",
"build": "tsc && cp src/*.json5 dist/"
},
"dependencies": {
"@grafserv/persisted": "^1.0.0",
"@graphile-contrib/pg-many-to-many": "^2.0.0-rc.2",
"@graphile-contrib/pg-omit-archived": "^4.0.0-rc.1",
"@graphile/pg-aggregates": "^0.2.0-rc.2",
"@graphile/simplify-inflection": "8.0.0-rc.5",
"express": "^4.18.2",
"graphile": "^5.0.0",
"postgraphile": "^5.0.1",
"postgraphile-plugin-connection-filter": "^3.0.0-rc.3",
"ws": "^8.13.0"
},
"devDependencies": {
"@benjie/tsconfig": "^22.0.3",
"@types/express": "^4.17.17",
"prettier": "^2.8.2",
"typescript": "^5.8.3"
},
"engine": {
"node": "^22.6.0 || ^23.6.0 || >= 24"
},
"prettier": {
"proseWrap": "always"
},
"packageManager": "yarn@4.9.2"
}