forked from aydrian/global-app-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
{
"private": true,
"sideEffects": false,
"type": "module",
"author": "Aydrian Howard <[email protected]> (https://cockroachlabs.com)",
"license": "MIT",
"repository": "github:aydrian/global-app-demo",
"scripts": {
"build": "remix build",
"deploy": "fly deploy --remote-only",
"dev": "remix dev --manual -c \"node server.js\"",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node ./server.js",
"typecheck": "tsc"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "^5.1.1",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/css-bundle": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.19.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"i18next": "^23.4.4",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"i18next-prisma-backend": "^0.0.1",
"isbot": "^3.6.13",
"lucide-react": "^0.268.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.1.2",
"remix-i18next": "^5.3.0",
"remix-utils": "^6.6.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"zod": "^3.22.0"
},
"devDependencies": {
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@types/accept-language-parser": "^1.5.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.15",
"chokidar": "^3.5.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-perfectionist": "^1.5.1",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"prisma": "^5.1.1",
"remix-flat-routes": "^0.5.10",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"seed": "ts-node --esm --require tsconfig-paths/register prisma/seed.ts"
}
}