-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.34 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": "color-contrast-inspector",
"version": "1.6.0",
"private": true,
"author": {
"name": "@AlexGarrixen"
},
"scripts": {
"panda:prepare": "panda codegen",
"dev": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build:icons": "npx @svgr/cli --config-file .svgrrc src/svgs"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@uidotdev/usehooks": "^2.4.1",
"chroma-js": "^2.4.2",
"color": "^4.2.3",
"jotai": "^2.6.0",
"lodash.uniqwith": "^4.5.0",
"next": "14.0.3",
"react": "^18",
"react-colorful": "^5.6.1",
"react-dom": "^18",
"react-responsive-masonry": "^2.1.7",
"vaul": "^0.9.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@pandacss/dev": "^0.40.1",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.4",
"@storybook/nextjs": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/test": "^7.6.4",
"@svgr/cli": "^8.1.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/chroma-js": "^2.4.3",
"@types/color": "^3.0.6",
"@types/color-convert": "^2.0.3",
"@types/jest": "^29.5.11",
"@types/lodash.uniqwith": "^4.5.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-responsive-masonry": "^2.1.3",
"@vercel/style-guide": "^5.1.0",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"storybook": "^7.6.4",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5"
}
}