-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.86 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
{
"name": "yumemi-coding-test",
"version": "0.1.0",
"private": true,
"repository": {
"type": "GitHub",
"url": "https://github.com/koutyuke/Yumemi_coding_test"
},
"scripts": {
"ci": "act --container-architecture linux/amd64",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"fmt": "prettier --cache --check --no-error-on-unmatched-pattern src/**/*.{ts,tsx}",
"fmt:fix": "prettier --cache --write --no-error-on-unmatched-pattern src/**/*.{ts,tsx}",
"test": "bun test",
"test:watch": "bun test --watch",
"test:todo": "bun test --todo",
"test:todo:watch": "bun test --todo --watch",
"sb:dev": "storybook dev -p 6006 --no-open",
"sb:build": "storybook build -o ./.storybook/static"
},
"dependencies": {
"@elysiajs/eden": "^1.0.14",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@storybook/test": "^8.1.3",
"@tanstack/react-query": "^5.39.0",
"@yolk-oss/elysia-env": "^1.0.2",
"autoprefixer": "^10.4.19",
"destyle.css": "^4.0.1",
"elysia": "^1.0.21",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"jotai": "^2.8.1",
"lucide-react": "^0.379.0",
"next": "14.2.3",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.4.0",
"@eslint/compat": "^1.0.1",
"@eslint/js": "^9.3.0",
"@sinclair/typebox": "^0.32.30",
"@storybook/addon-a11y": "^8.1.2",
"@storybook/addon-essentials": "^8.1.2",
"@storybook/addon-interactions": "^8.1.2",
"@storybook/addon-links": "^8.1.2",
"@storybook/addon-onboarding": "^8.1.2",
"@storybook/addon-storysource": "^8.1.2",
"@storybook/blocks": "^8.1.2",
"@storybook/nextjs": "^8.1.2",
"@storybook/react": "^8.1.2",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@tsconfig/next": "^2.0.3",
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "^1.1.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.16.0",
"globals": "^15.3.0",
"lefthook": "^1.6.12",
"postcss": "^8",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"storybook": "^8.1.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^7.10.0"
}
}