-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 755 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 755 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
{
"name": "interval.so",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"format": "prettier --check .",
"format:write": "yarn format --write",
"lint": "biome check .",
"lint:fix": "biome check . --write --unsafe",
"test": "yarn lint && yarn format && turbo run build type-check",
"type-check": "turbo run type-check"
},
"resolutions": {
"react-is": "^19.0.0-rc-69d4b800-20241021"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"turbo": "2.9.8",
"vercel": "51.8.0"
},
"packageManager": "yarn@4.14.1",
"engines": {
"node": "24.x"
},
"trustedDependencies": [
"@biomejs/biome"
]
}