-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.78 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
{
"name": "keydeuk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --cache --write .",
"lint:fix": "eslint ./**/*.{ts,tsx} --cache --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@next/third-parties": "^14.2.6",
"@react-three/drei": "^9.106.0",
"@react-three/fiber": "^8.16.7",
"@tanstack/react-query": "^5.37.1",
"@tosspayments/tosspayments-sdk": "^2.2.0",
"aos": "^3.0.0-beta.6",
"classnames": "^2.5.1",
"event-source-polyfill": "^1.0.31",
"js-confetti": "^0.12.0",
"lodash": "^4.17.21",
"next": "^14.2.6",
"plaiceholder": "^3.0.0",
"query-string": "^9.0.0",
"react": "^18",
"react-colorful": "^5.6.1",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-fast-marquee": "^1.6.4",
"react-hook-form": "^7.52.0",
"react-toastify": "^10.0.5",
"sass": "^1.77.2",
"sharp": "^0.33.5",
"swiper": "^11.1.4",
"three": "^0.165.0",
"three-stdlib": "^2.30.3",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.37.1",
"@chromatic-com/storybook": "^1.4.0",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-onboarding": "^8.1.1",
"@storybook/blocks": "^8.1.6",
"@storybook/nextjs": "^8.1.6",
"@storybook/react": "^8.1.6",
"@storybook/test": "^8.1.6",
"@svgr/webpack": "^8.1.0",
"@types/event-source-polyfill": "^1.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.165.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"storybook": "^8.1.1",
"stylelint": "^16.3.1",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --fix"
]
}
}