-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 887 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "FORCE_COLOR=1 turbo dev --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean"
},
"packageManager": "[email protected]",
"name": "laundrey",
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@manypkg/cli": "^0.20.0",
"@types/prettier": "^2.7.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "^1.10.3",
"typescript": "^5.1.3"
}
}