-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "piphacklup",
"version": "0.1.0",
"private": true,
"description": "PipHackLup is a hackathon operations Discord bot with onboarding, queues, team formation, moderation, and an organizer dashboard.",
"license": "MIT",
"homepage": "https://piphacklup.vercel.app",
"repository": {
"type": "git",
"url": "git+https://github.com/rupayon123/PipHackLup.git"
},
"bugs": {
"url": "https://github.com/rupayon123/PipHackLup/issues"
},
"packageManager": "pnpm@10.25.0",
"scripts": {
"build": "pnpm -r build",
"check": "pnpm -r check",
"dev": "pnpm --parallel --filter @piphacklup/bot --filter @piphacklup/web dev",
"dev:bot": "pnpm --filter @piphacklup/bot dev",
"dev:web": "pnpm --filter @piphacklup/web dev",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@types/node": "^25.0.1",
"next": "^16.2.7",
"prettier": "^3.7.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^6.0.3",
"vitest": "^4.0.15"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.12",
"postcss": "8.5.10"
}
}
}