-
-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.05 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.05 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
{
"name": "@app/server",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "tsc -b",
"start": "node -r @app/config/env dist/index.js",
"dev": "nodemon --signal SIGINT --watch 'dist/**/*.js' -x \"node --inspect=9678 -r @app/config/env -r source-map-support/register\" dist/index.js",
"schema:export": "ts-node -r @app/config/env scripts/schema-export.ts",
"cloudflare:import": "(echo \"export const cloudflareIps: string[] = [\"; (curl -Ls https://www.cloudflare.com/ips-v4 | sort | sed -e \"s/^/ \\\"/\" -e \"s/$/\\\",/\"); echo \"];\") > src/cloudflare.ts",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=\"${NODE_OPTIONS:-} -r @app/config/env\" jest"
},
"dependencies": {
"@app/client": "0.0.0",
"@app/config": "0.0.0",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pg-pubsub": "^4.13.0",
"@graphile/pro": "^1.0.4",
"@types/connect-pg-simple": "^7.0.0",
"@types/csurf": "^1.11.2",
"@types/express-session": "^1.17.6",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.4",
"@types/passport": "^1.0.12",
"@types/passport-github2": "^1.2.5",
"@types/pg": "^8.6.6",
"@types/redis": "^4.0.11",
"body-parser": "^1.20.3",
"chalk": "^5.2.0",
"connect-pg-simple": "^8.0.0",
"connect-redis": "^7.0.0",
"csurf": "^1.11.0",
"express": "^4.20.0",
"express-session": "^1.17.3",
"graphile-build": "^4.13.0",
"graphile-build-pg": "^4.13.0",
"graphile-utils": "^4.13.0",
"graphile-worker": "^0.13.0",
"helmet": "^6.0.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"next": "^14.2.15",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"pg": "^8.9.0",
"postgraphile": "^4.13.0",
"redis": "^4.6.5",
"source-map-support": "^0.5.21",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/node": "^18.14.2",
"graphql": "^15.8.0",
"jest": "^29.4.3",
"mock-req": "^0.2.0",
"ts-node": "^10.9.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3"
}
}