-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "idioms-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "VITE_DEV_PORT=8082 remix vite:dev",
"build": "npm run sass && remix vite:build",
"start": "PORT=8082 remix-serve ./build/server/index.js",
"check": "tsc",
"sass": "sass app/:app/",
"sass:watch": "sass --watch app/:app/",
"sitemap": "node --loader ts-node/esm ./scripts/sitemap.ts"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@mdx-js/mdx": "^3.0.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@tanstack/react-query": "^5.24.8",
"@types/connect": "^3.4.38",
"date-fns": "^3.3.1",
"feed": "^4.2.2",
"isbot": "^5.1.3",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.10",
"react-window-infinite-loader": "^1.0.9"
},
"devDependencies": {
"@mdx-js/rollup": "^3.0.1",
"@remix-run/dev": "^2.8.1",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/node": "^20.11.30",
"@types/ramda": "^0.29.11",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/react-window": "^1.8.8",
"@types/react-window-infinite-loader": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.18",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.35",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"sass": "^1.72.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1"
}
}