-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"private": true,
"sideEffects": false,
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},
"type": "module",
"dependencies": {
"@graphcms/rich-text-react-renderer": "^0.6.2",
"@headlessui/react": "^1.7.19",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@vercel/analytics": "^1.2.2",
"@vercel/node": "^3.0.22",
"dompurify": "^3.2.3",
"dotenv": "^16.4.7",
"framer-motion": "^11.0.8",
"graphql": "^16.10.0",
"graphql-request": "^6.1.0",
"isbot": "^3.6.8",
"lucide-react": "^0.292.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-social-icons": "^6.6.0",
"remix-themes": "^1.5.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@tailwindcss/typography": "^0.5.9",
"@types/dompurify": "^3.2.0",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/source-map-support": "^0.5.6",
"autoprefixer": "^10.4.18",
"eslint": "^8.53.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4",
"vite": "^5.1.5",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"**/*.{ts, js, jsx,tsx,mdx}": [
"prettier --write"
],
"**/*.{ts,tsx}": [
"eslint --fix"
]
}
}