-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"dependencies": {
"@nestjs/mapped-types": "*"
},
"name": "web08-booquiz",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"description": "300명 이상의 부스트캠퍼를 감당할 수 있는 퀴즈 플랫폼",
"main": "index.js",
"type": "module",
"scripts": {
"build": "pnpm run build -w apps/backend && pnpm run build -w apps/frontend",
"dev": "pnpm run dev -w apps/backend & pnpm run dev -w apps/frontend",
"docs:backend": "typedoc --tsconfig apps/backend/tsconfig.json --entryPointStrategy expand --out docs/backend",
"docs:frontend": "typedoc --tsconfig apps/frontend/tsconfig.json --entryPointStrategy expand --out docs/frontend",
"docs:shared": "typedoc --tsconfig packages/shared/tsconfig.json --entryPointStrategy expand --out docs/shared",
"docs": "pnpm run docs:backend && pnpm run docs:frontend",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"start": "pnpm --stream -r start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcampwm-2024/web08-BooQuiz.git"
},
"keywords": [
"real-time",
"quiz",
"game",
"websocket"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/boostcampwm-2024/web08-BooQuiz/issues"
},
"homepage": "https://github.com/boostcampwm-2024/web08-BooQuiz#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typescript": "^5.x.x"
}
}