-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.91 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.91 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
{
"name": "tmp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"compile": "tsc",
"build": "tsc && vite build",
"watch": "tsc --watch",
"preview": "vite preview",
"lint": "npx eslint . --color --ext .ts,.tsx",
"lint-fix": "npx eslint . --ext .ts,.tsx --fix",
"lint-md": "markdownlint *.md **/*.md .github/*.md --ignore node_modules",
"setup": "git config core.hooksPath .githooks",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"clean": "./scripts/clean.sh",
"postclean": "npm install",
"postinstall": "npm run patch",
"todo": "leasot -S 'src/**/*'",
"todo-ci": "leasot -x -S --reporter markdown 'src/**/*' > TODO.md",
"todo-pr": "leasot -x -S --reporter markdown 'src/**/*' > PR_TODO.md",
"db-start": "npx supabase start",
"db-start-env": "./scripts/db-start.sh",
"db-stop": "npx supabase stop",
"db-reset": "npx supabase db reset",
"patch": "patch-package",
"cli": "npx tsx cli/command.ts run"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.11",
"@mui/material": "^6.4.11",
"@remix-run/web-fetch": "^4.4.2",
"@supabase/supabase-js": "^2.49.4",
"history": "^5.3.0",
"nuka-carousel": "^8.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-loading-skeleton": "^3.5.0",
"react-router": "^7.5.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.0",
"@eslint/js": "^9.24.0",
"@inquirer/prompts": "^7.5.1",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-links": "^9.0.16",
"@storybook/addon-themes": "^9.0.16",
"@storybook/react-vite": "^9.0.16",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/postcss": "^4.1.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/yargs": "^17.0.33",
"@vitejs/plugin-react": "^4.4.1",
"babel-plugin-direct-import": "^1.0.0",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^9.0.16",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"leasot": "^14.4.0",
"markdownlint-cli": "^0.44.0",
"patch-package": "^8.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"storybook": "^9.0.16",
"storybook-addon-remix-react-router": "^5.0.0",
"supabase": "^2.22.12",
"tailwindcss": "^4.0.17",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^7.0.4",
"vitest": "^3.2.2",
"yargs": "^17.7.2"
}
}