-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "my-snek-function",
"baseURL": "https://schettn-special-umbrella-q66979jv7gh4w59-3000.preview.app.github.dev",
"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",
"@prisma/client": "^5.2.0",
"@snek-at/function": "*",
"@snek-at/function-cli": "*",
"@snek-at/function-server": "*",
"prisma": "^5.2.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"commitizen": "^4.2.5",
"git-cz": "^4.9.0",
"snek-query": "^0.0.53"
},
"scripts": {
"develop": "yarn sf develop",
"build": "yarn sf build",
"migrate": "prisma migrate dev"
},
"prisma": {
"schema": "prisma/schema.prisma"
}
}