generated from zth/rescript-relay-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "gigz",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"edgedb"
],
"scripts": {
"build": "rewatch build",
"build:rescript": "rescript build -with-deps",
"dev": "concurrently 'npm:dev:*'",
"dev:rescript": "rewatch watch",
"dev:web": "yarn workspace @my/web dev",
"dev:schema": "yarn workspace @my/schema dev",
"clean": "rewatch clean .",
"clean:rescript": "rescript clean",
"sendpay-example": "yarn workspace @my/sendpay-example",
"bindings": "yarn workspace @my/bindings",
"schema": "yarn workspace @my/schema",
"api": "yarn workspace @my/api",
"landing": "yarn workspace @my/landing",
"web": "yarn workspace @my/web",
"edgedb": "yarn workspace @my/edgedb",
"postinstall": "npm run build"
},
"devDependencies": {
"@rescript/core": "1.5.2",
"@rolandpeelen/rewatch": "^1.0.8",
"concurrently": "^8.2.2",
"rescript": "^11.1.3",
"rescript-edgedb": "^0.7.0"
},
"dependencies": {
"@glennsl/rescript-fetch": "^0.2.0",
"@my/bindings": "*",
"@my/schema": "*",
"graphql": "^16.9.0",
"graphql-yoga": "^5.6.2",
"json-bigint-patch": "^0.0.8",
"resgraph": "^0.11.0"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"packageManager": "[email protected]"
}