-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "xms-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@heroicons/react": "^2.0.16",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@types/node": "18.15.10",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"antd": "^5.3.2",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"emotion-reset": "^3.0.1",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"next": "13.2.4",
"react": "18.2.0",
"react-daum-postcode": "^3.1.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.8",
"typescript": "5.0.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.6",
"@tailwindcss/line-clamp": "^0.4.2",
"autoprefixer": "^10.4.14",
"babel-plugin-macros": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"msw": "1.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "^3.2.7",
"twin.macro": "^3.1.0"
},
"msw": {
"workerDirectory": "public"
}
}