-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@radix-ui/react-accordion": "^1.1.2",
"@remix-run/node": "2.12.0",
"@remix-run/react": "2.12.0",
"@remix-run/serve": "2.12.0",
"@vercel/remix": "^2.12.0",
"cva": "^1.0.0-beta.1",
"framer-motion": "^10.16.16",
"front-matter": "^4.0.2",
"isbot": "^3.6.10",
"marked": "^11.1.0",
"path-esm": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tiny-invariant": "^1.3.1",
"valibot": "^0.25.0"
},
"devDependencies": {
"@remix-run/dev": "2.12.0",
"@remix-run/eslint-config": "2.12.0",
"@tailwindcss/vite": "^4.0.0-alpha.9",
"@types/node": "^18.16.5",
"@types/path-browserify": "^1.0.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"tailwindcss": "^4.0.0-alpha.24",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": false,
"arrowParens": "avoid",
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}