-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1007 Bytes
/
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
{
"name": "y",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "preconstruct dev",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"hello": "turbo run hello"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@preconstruct/cli": "^2.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.32.0",
"prettier": "^2.8.3",
"turbo": "^1.7.0",
"turbo-ignore": "^0.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"preconstruct": {
"packages": [
"packages/subgraph-client"
]
},
"pnpm": {
"overrides": {
"@graphiql/toolkit": "0.8.0"
},
"patchedDependencies": {
"nostr-relaypool@0.4.9": "patches/nostr-relaypool@0.4.9.patch"
}
}
}