-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 989 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
46
47
48
49
50
51
{
"name": "meme-bros",
"version": "1.0.0",
"private": true,
"author": "Tracer1337 <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "node scripts/patch-packages.js",
"build": "yarn turbo run build",
"dev": "yarn turbo run dev --parallel --no-cache --continue"
},
"workspaces": {
"packages": [
"admin",
"api",
"api-sdk",
"app",
"canvas",
"client-lib",
"core",
"core/types",
"core/http",
"mobile",
"scripts",
"shared",
"web"
],
"nohoist": [
"**/react",
"**/react-dom",
"**/react-native",
"**/react-native/**",
"**/react-native-web",
"**/react-native-reanimated",
"**/react-native-gesture-handler"
]
},
"devDependencies": {
"turbo": "^1.0.28"
},
"turbo": {
"pipeline": {
"build": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false
}
}
}
}