-
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) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 817 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": "rps-tournament",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"host": "turbo host",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean-dist": "find apps/ -type d -name 'dist' -print0 | xargs -r0 -- rm -r",
"clean-all": "find apps/ -type d -name 'dist' -print0 | xargs -r0 -- rm -r && find . -path ./node_modules -prune -o -name 'node_modules' | xargs rm -rf "
},
"license": "ISC",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"prettier": "^3.4.2"
},
"dependencies": {
"dotenv": "^16.4.7",
"tsx": "^4.19.2",
"turbo": "^2.5.2",
"typescript": "^5.7.3"
},
"packageManager": ">=npm@10.9.0"
}