-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 792 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 792 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
{
"name": "root",
"packageManager": "npm@8.11.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"clean": "rm -rf node_modules",
"clean:workspaces": "turbo clean",
"db-generate": "turbo db-generate",
"db-push": "turbo db-push",
"dev": "turbo dev --parallel ",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint && manypkg check",
"type-check": "turbo type-check"
},
"dependencies": {
"@manypkg/cli": "^0.20.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"turbo": "^1.8.5",
"typescript": "^5.0.2"
}
}