-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.28 KB
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": "compio-website",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --cache src --report-unused-disable-directives --max-warnings 0",
"format": "biome format --write src",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"serve": "vite preview"
},
"lint-staged": {
"*.{ts,tsx}": "eslint"
},
"dependencies": {
"@fontsource-variable/dm-sans": "^5.2.8",
"@iconify/react": "^5.2.1",
"classix": "^2.2.6",
"framer-motion": "^11.18.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.39.2",
"@k-vyn/coloralgorithm": "^1.2.0",
"@shikijs/rehype": "^1.29.2",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@types/node": "^22.19.3",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.25",
"eslint-plugin-storybook": "^0.10.2",
"glob": "^11.1.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"isomorphic-dompurify": "^2.34.0",
"lint-staged": "^15.5.2",
"postcss": "^8.5.6",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^1.29.2",
"storybook": "^8.6.14",
"storybook-addon-remix-react-router": "^3.1.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vite": "^5.4.21",
"vite-plugin-favicons-inject": "^2.2.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}