-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.92 KB
/
package.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.92 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@repo/project",
"version": "1.0.0",
"private": true,
"description": "@repo/project description",
"author": "Nisharg Shah <nishargshah3101@gmail.com>",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"clean:all": "pnpm clean:node_modules && pnpm clean:generated-folders",
"clean:dist": "pnpx rimraf dist && pnpm -r exec pnpx rimraf dist",
"clean:generated-folders": "pnpm clean:dist && pnpm clean:next",
"clean:next": "pnpx rimraf .next && pnpm -r exec pnpx rimraf .next",
"clean:node_modules": "pnpx rimraf node_modules && pnpm -r exec pnpx rimraf node_modules",
"clean:workspace": "pnpm clean:node_modules && pnpx rimraf pnpm-lock.yaml",
"format": "pnpm root:format && pnpm -r format",
"format:fix": "pnpm root:format:fix && pnpm -r format:fix",
"fresh:init": "pnpm clean:workspace && pnpm clean:generated-folders",
"lint": "pnpm root:lint && pnpm -r lint",
"lint:fix": "pnpm root:lint:fix && pnpm -r lint:fix",
"prepare": "husky || true",
"root:format": "prettier . --check --log-level silent",
"root:format:fix": "prettier . --write --log-level silent",
"root:lint": "eslint .",
"root:lint:fix": "eslint . --fix",
"script:lint": "bash -e ./scripts/lint.sh",
"typecheck": "pnpm -r typecheck",
"web:dev": "pnpm --filter @repo/web dev"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/lint-staged-config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@types/node": "^24.10.13",
"eslint": "^9.39.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsc-files": "^1.1.4",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.30.2",
"engines": {
"node": ">=24.0.0",
"npm": "please-use-pnpm",
"pnpm": ">=10.26.0",
"yarn": "please-use-pnpm"
}
}