-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "gojo",
"private": true,
"sideEffects": false,
"type": "module",
"license": "MIT",
"scripts": {
"build": "remix build",
"postinstall": "prisma generate",
"dev": "remix dev --manual",
"start": "remix-serve ./build/index.js",
"typecheck": "tsc",
"test": "playwright test --ui",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@conform-to/react": "^1.0.0",
"@conform-to/zod": "^1.0.0",
"@epic-web/invariant": "^1.0.0",
"@faker-js/faker": "^8.4.0",
"@fontsource-variable/overpass": "^5.0.17",
"@headlessui/react": "^1.7.18",
"@liveblocks/client": "^1.9.7",
"@liveblocks/node": "^1.9.7",
"@liveblocks/react": "^1.9.7",
"@prisma/client": "^5.10.2",
"@radix-ui/react-toolbar": "^1.0.4",
"@remix-run/css-bundle": "^2.0.0",
"@remix-run/node": "^2.0.0",
"@remix-run/react": "^2.0.0",
"@remix-run/serve": "^2.0.0",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.0.2",
"@vercel/remix": "^2.0.0",
"dompurify": "^3.0.9",
"isbot": "^3.6.8",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.4",
"remix-toast": "^1.2.0",
"remix-utils": "^7.5.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@remix-run/dev": "^2.0.0",
"@remix-run/eslint-config": "^2.0.0",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.8",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-remix": "^0.0.2",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"prisma": "^5.10.2",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}