-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.84 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "petbook-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "jest",
"build:notify": "ts-node ./scripts/preRunner.ts && next build 1> buildLog.txt 2> errorLog.txt && ts-node ./scripts/isVercelUpdated.ts && ts-node ./scripts/postRunner.ts || ts-node ./scripts/postRunner.ts",
"prepare": "husky install .husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_b0a1a87639eb5c7"
},
"husky": {
"hooks": {
"pre-commit": "eslint --fix && prettier --write",
"pre-push": "eslint --fix && pretter --write"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@next/font": "^13.2.0",
"@tanstack/react-query": "^4.20.9",
"axios": "^0.27.2",
"dayjs": "^1.11.7",
"gsap": "^3.11.5",
"isomorphic-dompurify": "^0.24.0",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"lodash.throttle": "^4.1.1",
"next": "13.4.7",
"next-cookies": "^2.0.3",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-bubblytip": "^0.1.1",
"react-cropper": "^2.3.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-icons": "^4.3.1",
"react-kakao-maps-sdk": "^1.1.5",
"react-quill": "^2.0.0",
"recoil": "^0.7.5",
"request-ip": "^3.3.0",
"sass": "^1.51.0",
"styled-components": "^5.3.5",
"swiper": "^8.4.5",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/runtime": "^7.20.7",
"@next/env": "^13.0.6",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.12",
"@storybook/nextjs": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/express": "^4.17.14",
"@types/jest": "^29.5.2",
"@types/js-cookie": "^3.0.2",
"@types/kakaomaps": "^1.1.2",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "17.0.30",
"@types/qs": "^6.9.7",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-test-renderer": "^18.0.0",
"@types/request-ip": "^0.0.37",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@typescript-eslint/utils": "^5.40.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"chromatic": "^6.17.4",
"css-loader": "^6.8.1",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-storybook": "^0.6.12",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdoc": "^3.6.11",
"lint-staged": "^13.2.0",
"next-router-mock": "^0.9.6",
"postcss-loader": "^7.3.3",
"prettier": "^2.7.1",
"react-is": "^18.1.0",
"react-test-renderer": "^18.2.0",
"storybook": "^7.0.12",
"storybook-addon-next": "^1.8.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"_id": "[email protected]"
}