forked from Thenlie/Streamability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.99 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
{
"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.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@remix-run/web-fetch": "^4.4.2",
"@supabase/supabase-js": "^2.45.4",
"history": "^5.3.0",
"nuka-carousel": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-loading-skeleton": "^3.4.0",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@inquirer/prompts": "^5.0.6",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-themes": "^8.3.5",
"@storybook/blocks": "^8.1.10",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-plugin-direct-import": "^1.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.9.0",
"jsdom": "^25.0.1",
"leasot": "^14.4.0",
"markdownlint-cli": "^0.42.0",
"patch-package": "^8.0.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"storybook": "^8.2.8",
"storybook-addon-remix-react-router": "^3.0.1",
"supabase": "^1.207.9",
"tailwindcss": "^3.4.4",
"tsx": "^4.17.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vitest": "^1.6.0",
"yargs": "^17.7.2"
}
}