-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "invoicemanager",
"version": "0.3.1",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"rimraf": "rm -rf node_modules/.cache && rm -rf public/build && rm -rf build",
"build": "remix build",
"assets": "npx @svgr/cli --out-dir ./app/common -- ./app/assets",
"assets:watch": "npm-watch assets",
"dev:svg": "run-s rimraf assets assets:watch",
"dev:remix": "remix dev --manual",
"dev": "run-p dev:*",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc --noEmit",
"format:write": "prettier . --write \"**/*.{js,mjs,jsx,ts,tsx}\" --cache",
"format:check": "prettier . --check \"**/*.{js,mjs,jsx,ts,tsx}\" --cache",
"postinstall": "pnpm exec prisma generate"
},
"dependencies": {
"@clerk/remix": "^3.1.18",
"@clerk/themes": "^1.7.9",
"@ebay/nice-modal-react": "^1.2.13",
"@headlessui/react": "^1.7.18",
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.9.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/css-bundle": "^2.6.0",
"@remix-run/node": "^2.6.0",
"@remix-run/react": "^2.6.0",
"@remix-run/serve": "^2.6.0",
"@vercel/analytics": "^1.1.4",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"cva": "npm:class-variance-authority@^0.7.0",
"date-fns": "^3.3.1",
"immer": "^10.0.3",
"isbot": "^4.4.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-icons": "^5.0.1",
"remix-hook-form": "^4.1.0",
"remix-themes": "^1.3.1",
"remix-toast": "^1.1.0",
"sonner": "^1.4.0",
"svix": "^1.17.0",
"tailwind-merge": "^2.2.1",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.2.0",
"@remix-run/dev": "^2.6.0",
"@remix-run/eslint-config": "^2.6.0",
"@svgr/cli": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"prettier": "^3.2.5",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.9.1",
"remix-development-tools": "^3.7.4",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3"
},
"watch": {
"assets": {
"patterns": [
"assets"
],
"extensions": "svg",
"quiet": false
}
},
"engines": {
"node": ">=18.0.0",
"pnpm": "8.x"
}
}