-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 913 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
27
{
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"reset-deps:about": "echo '!!ATTENTION!! This script removes *all* npm and pnpm lock files and node_modules directories from *all* subdirectories.'",
"reset-deps": "which zsh && zsh -c 'rm -rf **/package-lock.json || ; rm -rf **/pnpm-lock.yaml || ; rm -rf **/node_modules/ || ;'",
"delete-builds": "which zsh && zsh -c 'rm -rf **/dist/ || ; rm -rf **/.turbo/ || ;'"
},
"dependencies": {
"change-case": "^5.4.4"
},
"devDependencies": {
"@local/config-eslint": "workspace:*",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"turbo": "latest",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.1"
},
"packageManager": "[email protected]"
}