-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 875 Bytes
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
{
"name": "podverse-monorepo-root",
"version": "0.0.0",
"private": true,
"packageManager": "yarn@3.6.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/prettier": "^2",
"eslint": "^8.42.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"turbo": "^1.10.7",
"typescript": "^5.1.3"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"format-for-turbo": "prettier --write .",
"format:check": "prettier . --check",
"format": "turbo format-for-turbo"
},
"volta": {
"node": "18.18.0",
"yarn": "3.6.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"dependencies": {
"@supabase/supabase-js": "2.39.3"
}
}