-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.36 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
{
"name": "snsync",
"license": "MIT",
"author": {
"name": "Nakamura Takumi",
"email": "takumi@mealmates.app",
"email2": "takumi.062757@gmail.com",
"url": "https://github.com/nyatinte"
},
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual",
"lint": "biome lint ./app",
"format": "biome format ./app --write",
"check": "biome check ./app --apply",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest --watch",
"shadcn": "pnpm dlx shadcn-ui@latest add",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"markuplint": "markuplint app/**/*.tsx --fix"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@remix-run/css-bundle": "^2.6.0",
"@remix-run/node": "^2.6.0",
"@remix-run/react": "^2.6.0",
"@remix-run/serve": "^2.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"isbot": "^4.1.0",
"lucide-react": "^0.323.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@markuplint/jsx-parser": "^4.0.2",
"@markuplint/react-spec": "^4.0.0",
"@remix-run/dev": "^2.6.0",
"@remix-run/testing": "^2.8.0",
"@storybook/addon-essentials": "^7.6.13",
"@storybook/addon-interactions": "^7.6.13",
"@storybook/addon-links": "^7.6.13",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.13",
"@storybook/react": "^7.6.13",
"@storybook/react-vite": "^7.6.13",
"@storybook/test": "^7.6.13",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"jsdom": "^24.0.0",
"markuplint": "^4.0.2",
"postcss": "^8.4.34",
"storybook": "^7.6.13",
"tailwindcss": "^3.4.1",
"typescript": "^5.1.6",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=20.0.0",
"npm": "Use pnpm instead of npm",
"yarn": "Use pnpm instead of yarn"
},
"volta": {
"node": "20.11.0"
}
}