forked from marmelab/atomic-crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.48 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.48 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "atomic-crm",
"version": "0.1.0",
"type": "module",
"scripts": {
"test": "vitest",
"dev": "vite --force",
"dev:demo": "vite --config vite.demo.config --force",
"build": "tsc && vite build",
"build:demo": "tsc && vite build --config vite.demo.config",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"lint:apply": "eslint **/*.{mjs,ts,tsx} --fix",
"lint": "eslint **/*.{mjs,ts,tsx}",
"prettier:apply": "prettier --config ./.prettierrc.json --write --list-different \"**/*.{js,json,ts,tsx,css,md,html}\"",
"prettier": "prettier --config ./.prettierrc.json --check \"**/*.{js,json,ts,tsx,css,md,html}\"",
"registry:build": "npx shadcn build",
"registry:gen": "node ./scripts/generate-registry.mjs",
"ghpages:deploy": "node ./scripts/ghpages-deploy.mjs",
"supabase:remote:init": "node ./scripts/supabase-remote-init.mjs",
"prepare": "husky"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@nivo/bar": "^0.99.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.90.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"diacritic": "^0.0.2",
"faker": "^5.5.3",
"inflection": "^3.0.2",
"jsonexport": "^3.2.0",
"lodash": "^4.17.21",
"lucide-react": "^0.542.0",
"next-themes": "^0.4.6",
"papaparse": "^5.5.3",
"query-string": "^7.1.3",
"ra-core": "^5.13.3",
"ra-data-fakerest": "^5.10.0",
"ra-i18n-polyglot": "^5.13.3",
"ra-language-english": "^5.13.3",
"ra-supabase-core": "^3.5.2",
"ra-supabase-language-english": "^3.5.0",
"react": "^19.1.0",
"react-cropper": "^2.3.3",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.68.0",
"react-router": "^7.10.1",
"rollup-plugin-visualizer": "^6.0.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/faker": "^5.5.9",
"@types/jsonexport": "^3.0.5",
"@types/lodash": "^4.17.20",
"@types/node": "^22.16.5",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.0.13",
"gh-pages": "^6.3.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"shadcn": "^3.5.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-simple-html": "^1.0.1",
"vitest": "^3.2.4"
}
}