-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
99 lines (99 loc) · 3.51 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
97
98
99
{
"name": "atomic-crm",
"version": "0.0.2",
"type": "module",
"types": "./lib/types",
"module": "./lib/index.js",
"main": "./lib/index.cjs",
"files": [
"lib",
"README.md",
"src"
],
"dependencies": {
"@hello-pangea/dnd": "^16.5.0",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"@nivo/bar": "^0.87.0",
"@nivo/core": "^0.87.0",
"@supabase/supabase-js": "^2.39.3",
"@types/jsonexport": "^3.0.5",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"faker": "~5.4.0",
"lodash": "~4.17.5",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"ra-data-fakerest": "^5.4.0",
"ra-supabase": "^3.3.1",
"react": "^18.2.0",
"react-admin": "^5.4.0",
"react-cropper": "^2.3.3",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"serve": "^14.2.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@inquirer/prompts": "^5.3.2",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-onboarding": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-vite": "^8.3.0",
"@storybook/test": "^8.3.0",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/faker": "^5.5.0",
"@types/jest": "^29.5.11",
"@types/jsonexport": "^3.0.5",
"@types/lodash": "^4.17.7",
"@types/papaparse": "^5.3.14",
"@types/pg": "^8.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^5.11.0",
"execa": "git+https://github.com/sindresorhus/execa",
"gh-pages": "^6.1.1",
"ink": "^5.0.1",
"lint-staged": "^13.0.3",
"pg": "^8.11.3",
"prettier": "~3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.3.0",
"supabase": "^1.136.3",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.2.1",
"vitest": "^2.0.5",
"web-vitals": "^4.2.2"
},
"scripts": {
"test": "vitest",
"dev": "vite --force",
"build": "tsc && vite build",
"build-lib": "tsc && vite build --config vite.lib.config",
"preview": "vite preview",
"lint:apply": "eslint **/*.{mjs,ts,tsx} --fix",
"lint:check": "eslint **/*.{mjs,ts,tsx}",
"prettier:apply": "prettier --config ./.prettierrc.mjs --write --list-different \"**/*.{js,json,ts,tsx,css,md,html}\"",
"prettier:check": "prettier --config ./.prettierrc.mjs --check \"**/*.{js,json,ts,tsx,css,md,html}\"",
"ghpages:deploy": "node ./scripts/ghpages-deploy.mjs",
"supabase:remote:init": "node ./scripts/supabase-remote-init.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
}
}