-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:staged": "lint-staged",
"lint:css": "stylelint '**/*.{tsx, ts}' --fix",
"prepare": "husky install",
"vercel-deploy": "next build && next export",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"resolutions": {
"jackspeak": "2.1.1",
"@types/react": "17.0.2"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide": "^4.1.4",
"@storybook/addon-styling": "^1.3.7",
"@types/node": "20.3.1",
"@types/react": "17.0.2",
"@types/react-dom": "18.2.6",
"axios": "^1.4.0",
"dayjs": "^1.11.10",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.4.7",
"js-cookie": "^3.0.5",
"next": "13.4.7",
"postcss-styled-syntax": "^0.4.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-query": "^3.39.3",
"react-router-dom": "^6.16.0",
"react-slick": "^0.29.0",
"react-swipeable": "^7.0.1",
"recoil": "^0.7.7",
"slick-carousel": "^1.8.1",
"styled-components": "^6.0.0-rc.5",
"stylelint": "^15.9.0",
"typescript": "5.1.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.2",
"@storybook/nextjs": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/testing-library": "^0.2.1",
"@types/js-cookie": "^3.0.3",
"@types/react-slick": "^0.23.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-plugin-styled-components": "^2.1.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"prettier": "^2.8.8",
"storybook": "^7.4.2",
"stylelint-config-concentric-order": "^5.1.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-processor-styled-components": "^1.10.0"
}
}