forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 KB
/
package.json
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
{
"name": "api",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": "./index.js",
"scripts": {
"start": "vite serve",
"build": "vite build --ssr ./index.ts && node ../scripts/bundle-yarn.js",
"update-schema": "node -r envars/config ../scripts/update-schema.js",
"deploy": "node ../scripts/gcf-deploy.js api --entry=api",
"api:tsc": "tsc",
"api:start": "yarn workspace api run start",
"api:update-schema": "yarn workspace api run update-schema",
"api:build": "yarn workspace api run build"
},
"dependencies": {
"@google-cloud/functions-framework": "^3.1.3",
"@google-cloud/storage": "^6.9.4",
"@sendgrid/mail": "^7.7.0",
"cookie": "^0.5.0",
"dataloader": "^2.2.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.0.1",
"firebase-admin": "^11.5.0",
"gm": "^1.25.0",
"google-auth-library": "^8.7.0",
"got": "^12.6.0",
"graphql": "^16.6.0",
"graphql-helix": "^1.13.0",
"graphql-relay": "^0.10.0",
"handlebars": "^4.7.7",
"http-errors": "^2.0.0",
"image-size": "^1.0.2",
"jose": "^4.13.1",
"knex": "^2.4.2",
"lodash-es": "^4.17.21",
"lru-cache": "^7.18.3",
"minimist": "^1.2.8",
"nanoid": "^4.0.1",
"pg": "^8.10.0",
"pretty-error": "^4.0.0",
"simple-oauth2": "^5.0.0",
"slugify": "^1.6.5",
"source-map-support": "^0.5.21",
"validator": "^13.9.0",
"validator-fluent": "^0.4.2"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/cookie": "^0.5.1",
"@types/express": "^4.17.17",
"@types/gm": "^1.25.0",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.4.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.6",
"@types/pg": "^8.6.6",
"@types/source-map-support": "^0.5.6",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.13",
"envars": "^0.4.0",
"execa": "^7.0.0",
"knex-types": "^0.5.0",
"supertest": "^6.3.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-node": "^3.0.2"
},
"envars": {
"cwd": "../env"
}
}