-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.07 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
{
"name": "salepinoff",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run style-dictionary:build & next dev",
"build": "npm run style-dictionary:build & next build",
"start": "npm run style-dictionary:build & next start",
"lint": "next lint",
"prepare": "husky install",
"style-dictionary:build": "style-dictionary build --config ./style-dictionary.config.json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.0",
"@lukemorales/query-key-factory": "^1.3.4",
"@next/third-parties": "^14.2.5",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/query-core": "^5.37.1",
"@tanstack/react-query": "^5.37.1",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.4",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"file-saver": "^2.0.5",
"framer-motion": "^11.2.6",
"html2canvas": "^1.4.1",
"jotai": "^2.8.1",
"jotai-tanstack-query": "^0.8.5",
"lodash": "^4.17.21",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"ts-pattern": "^5.2.0",
"wonka": "^6.3.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.4.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/addon-onboarding": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/nextjs": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/test": "^8.1.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.37.1",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.19",
"chromatic": "^11.5.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"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",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"storybook": "^8.1.1",
"style-dictionary": "^3.9.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}