-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.28 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "hoit-ems-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"generate": "npx openapi-typescript http://api.ho-it.me/docs-json --output src/types/api/api.d.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage",
"docker:build": "docker build -t ems-front .",
"docker:start": "docker run -p 3000:3000 ems-front",
"docker:build:test": "docker build -t ems-front:test . -f dockerfile.test",
"docker:test": "docker run ems-front:test",
"docker:build:local": "docker build -t ems-front:local . -f dockerfile.local",
"docker:local": "docker run -p 3000:3000 ems-front:local",
"docker:stop": "docker stop $(docker ps -a -q)",
"docker:clean": "docker system prune -f > /dev/null 2>&1",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@types/lodash": "^4.14.201",
"@types/node": "20.4.4",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"framer-motion": "^10.13.1",
"hoit-server-api": "^0.0.2",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"lucide-react": "^0.263.1",
"next": "^13.4.12",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"openapi-fetch": "^0.8.1",
"postcss": "8.4.27",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-day-picker": "^8.9.1",
"react-dom": "18.2.0",
"react-grid-layout": "^1.3.4",
"react-hook-form": "^7.47.0",
"react-kakao-maps-sdk": "^1.1.24",
"socket.io-client": "^4.7.2",
"swr": "^2.2.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"ulid": "^2.3.0",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zustand": "^4.4.6"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.4",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-grid-layout": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"encoding": "^0.1.13",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"lint-staged": "^14.0.1",
"openapi-typescript": "^6.7.1",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}