-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "web08-booquiz",
"private": true,
"version": "1.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"description": "300명 이상의 부스트캠퍼를 감당할 수 있는 퀴즈 플랫폼",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"docs": "turbo run docs",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"start": "turbo run start",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@nestjs/mapped-types": "*"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typedoc": "^0.26.11",
"typescript": "^5.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boostcampwm-2024/web08-BooQuiz.git"
},
"keywords": [
"real-time",
"quiz",
"game",
"websocket"
],
"author": "",
"license": "ISC",
"packageManager": "[email protected]"
}