forked from TeamRaccoons/referral
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 805 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 805 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
{
"name": "monorepo",
"private": true,
"engines": {
"node": ">=v22.0.0"
},
"packageManager": "pnpm@10.11.0",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"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"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@manypkg/cli": "^0.21.0",
"@types/prettier": "^2.7.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
}
}