-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2 KB
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
{
"name": "loan-wolf",
"version": "1.2.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"prebuild": "npm run build:seed",
"build": "remix vite:build",
"build:seed": "esbuild --platform=node --outfile=prisma/seed.js prisma/seed.ts",
"predev": "npm run prebuild && npm run migrate:dev",
"dev": "remix vite:dev --host",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"premigrate:dev": "npm run build:seed",
"migrate:dev": "prisma migrate dev && prisma db seed",
"prebuild:contained": "npm run build:seed",
"build:contained": "remix vite:build",
"prestart:contained": "prisma migrate deploy && prisma db seed",
"start:contained": "remix-serve ./build/server/index.js",
"build:docker": "docker buildx bake --load",
"publish:docker": "scripts/docker-publish.sh"
},
"dependencies": {
"@mantine/core": "^7",
"@mantine/dates": "^7",
"@mantine/hooks": "^7",
"@prisma/client": "^5",
"@react-pdf/renderer": "^4",
"@remix-run/node": "^2",
"@remix-run/react": "^2",
"@remix-run/serve": "^2",
"argon2": "^0",
"isbot": "^4",
"pino": "^9",
"react": "^18",
"react-dom": "^18",
"short-unique-id": "^5"
},
"devDependencies": {
"@remix-run/dev": "^2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^8",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"postcss": "^8",
"postcss-preset-mantine": "^1",
"postcss-simple-vars": "^7",
"prisma": "^5",
"tsx": "^4",
"typescript": "^5",
"vite": "^6",
"vite-tsconfig-paths": "^5"
},
"engines": {
"node": ">=18"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}