-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) ยท 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) ยท 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "allcll_frontend",
"version": "1.0.0",
"description": "allcll frontend project",
"repository": {
"type": "git",
"url": "https://github.com/allcll/frontend.git"
},
"private": true,
"type": "module",
"scripts": {
"client": "pnpm -F @allcll/client run dev",
"admin": "pnpm -F @allcll/admin run dev",
"build-client": "pnpm -F @allcll/client run build",
"build-admin": "pnpm -F @allcll/admin run build",
"prettier": "npx prettier ./packages --write",
"test": "pnpm -F @allcll/e2e run test",
"test:ui": "pnpm -F @allcll/e2e run test:ui",
"test:gen": "pnpm -F @allcll/e2e run test:gen",
"sejongui": "pnpm -F @allcll/sejong-ui run storybook",
"allcllui": "pnpm -F @allcll/allcll-ui run storybook",
"prepare": "husky"
},
"packageManager": "pnpm@9.15.4",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.12.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^20.19.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0",
"vite": "7.1.11",
"vite-tsconfig-paths": "^5.1.4"
},
"resolutions": {
"@types/react": "^19.1.6"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{js,jsx,json,css,md}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": [
"..\\..\\..\\..\\packages\\mock-server",
"..\\..\\..\\..\\packages\\admin",
"..\\..\\..\\..\\packages\\client"
]
}
}