-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "@snek-functions/mailpress",
"baseURL": "https://services.snek.at/mailpress",
"version": "0.0.1",
"type": "module",
"description": "Generated with `sf new`",
"author": "snek-at",
"exports": {
"./client": "./src/client/index.ts",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"./client": [
"./src/client/index.ts"
]
}
},
"files": [
"src/client",
"package.json"
],
"config": {
"commitizen": {
"path": "git-cz"
}
},
"dependencies": {
"@devoxa/prisma-relay-cursor-connection": "^3.1.0",
"@netsnek/prisma-repository": "^0.0.2",
"@prisma/client": "^5.2.0",
"@snek-at/function": "*",
"@snek-at/function-cli": "*",
"@snek-at/function-server": "*",
"@snek-functions/jwt": "*",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.0.3",
"html-minifier": "^4.0.0",
"isolated-vm": "^4.6.0",
"prisma": "^5.2.0",
"twig": "^1.16.0"
},
"devDependencies": {
"@types/html-minifier": "^4.0.2",
"@types/twig": "^1.12.9",
"commitizen": "^4.2.5",
"git-cz": "^4.9.0",
"snek-query": "^0.0.78"
},
"scripts": {
"develop": "yarn sf develop",
"build": "yarn sf build",
"migrate": "prisma migrate dev",
"generate-clients": "yarn snek-query generate https://services.snek.at/iam/graphql --output ./src/clients/iam && yarn snek-query generate https://services.snek.at/mailer/graphql --output ./src/clients/mailer",
"generate-clients-dev": "yarn snek-query generate http://localhost:4050/graphql --output ./src/clients/iam && yarn snek-query generate http://localhost:4020/graphql --output ./src/clients/mailer"
},
"prisma": {
"schema": "prisma/schema.prisma"
}
}