-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1002 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": "raise",
"workspaces": [
"apps/server",
"apps/web",
"packages/*"
],
"private": true,
"scripts": {
"postinstall": "npm run postinstall --workspaces --if-present",
"start": "turbo run start",
"test": "turbo run test",
"lint": "turbo run lint",
"build": "turbo run build",
"// TODO: add formatter": "",
"// format": "exit 1 && prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"prettier": "^2.8.8",
"turbo": "^1.11.3"
},
"packageManager": "[email protected]",
"overrides": {
"[email protected]": {
"react": "^18",
"react-dom": "^18"
},
"@reach/accordion": {
"react": "^18",
"react-dom": "^18"
},
"@reach/dialog": {
"react": "^18",
"react-dom": "^18"
},
"@reach/disclosure": {
"react": "^18",
"react-dom": "^18"
},
"@reach/listbox": {
"react": "^18",
"react-dom": "^18"
}
}
}