-
-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.78 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
{
"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",
"test": "NODE_ENV=test node -r @app/config/env ./node_modules/.bin/jest"
},
"dependencies": {
"@app/client": "0.0.0",
"@app/config": "0.0.0",
"@graphile-contrib/pg-simplify-inflector": "^6.0.0",
"@graphile/pg-pubsub": "^4.7.0",
"@graphile/pro": "^0.9.1",
"@types/connect-pg-simple": "^4.2.0",
"@types/connect-redis": "^0.0.13",
"@types/express-session": "^1.17.0",
"@types/helmet": "^0.0.46",
"@types/morgan": "^1.9.0",
"@types/passport": "^1.0.3",
"@types/passport-github2": "^1.2.4",
"@types/pg": "^7.14.1",
"@types/redis": "^2.8.18",
"@types/uuid": "^7.0.3",
"aws-sdk": "^2.668.0",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"connect-pg-simple": "^6.1.0",
"connect-redis": "^4.0.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphile-build": "^4.7.0",
"graphile-build-pg": "^4.7.0",
"graphile-utils": "^4.7.0",
"graphile-worker": "^0.6.0",
"helmet": "^3.22.0",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"next": "^9.3.6",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"pg": "^8.0.3",
"postgraphile": "^4.7.0",
"redis": "^3.0.2",
"source-map-support": "^0.5.13",
"tslib": "^1.11.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/node": "^13.13.4",
"graphql": "^14.4.2",
"jest": "^25.5.4",
"mock-req": "^0.2.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}