-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) ยท 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "web28-ddara",
"version": "0.0.0",
"private": true,
"description": "์ค์ฅ๋
์ธต์ ์ํ ์ ๊ทผ์ฑ์ ๋ฐํ์ผ๋ก ํ ์์น ๊ธฐ๋ฐ ์๋น์ค",
"scripts": {
"prepare": "husky",
"front": "pnpm --filter ddara-frontend dev",
"backend": "pnpm --filter ddara-backend dev",
"build": "pnpm --filter ddara-frontend build",
"build:docusaurus": "pnpm --filter docusaurus build",
"dev": "pnpm -r dev",
"lint": "pnpm lint-staged",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"storybook": "pnpm --filter ddara-frontend storybook",
"typedoc": "typedoc --options typedoc.json",
"jsdoc": "jsdoc -c jsdoc.json"
},
"workspaces": [
"frontend",
"backend",
"docs"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jsdoc": "^4.0.4",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typedoc": "^0.26.11",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"!docs/**/*.{js,jsx,ts,tsx}": "eslint --fix"
}
}