-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@remix-run/node": "^2.15.0",
"@remix-run/react": "^2.15.0",
"@remix-run/serve": "^2.15.0",
"better-sqlite3": "^11.6.0",
"isbot": "4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@remix-run/dev": "^2.15.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/better-sqlite3": "^7.6.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1",
"cross-env": "^7.0.3"
},
"resolutions": {
"globals": "14.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development remix vite:dev",
"build": "cross-env NODE_ENV=production remix vite:build",
"serve": "remix-serve build/server/index.js",
"lint": "eslint"
}
}