-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 KB
/
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
{
"name": "@plutus/root",
"packageManager": "pnpm@9.15.0",
"private": true,
"author": {
"name": "Francis Masha",
"email": "francismasha96@gmail.com"
},
"scripts": {
"build": "dotenv -- turbo build --log-order=grouped --parallel",
"dev": "dotenv -- turbo run dev --parallel",
"start": "dotenv -- turbo run start",
"format": "biome format --write . && biome check --apply-unsafe .",
"lint": "turbo lint && manypkg check",
"lint:fix": "biome lint --apply .",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"typecheck": "turbo typecheck",
"db:setup": "dotenv -- turbo db:setup"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@manypkg/cli": "^0.23.0",
"@types/node": "^22.10.2",
"dotenv-cli": "^7.4.4",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
}
}
}