-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 4.37 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "zest-f716",
"private": true,
"sideEffects": false,
"scripts": {
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"build": "run-s build:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode --require ./mocks -- @remix-run/dev:remix dev",
"dev": "run-p dev:*",
"format": "prettier --write .",
"generate:css": "tailwindcss -i ./styles/tailwind.css -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"pretest:e2e:run": "npm run build",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"start": "remix-serve build",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"npx cypress run\"",
"test": "vitest",
"typecheck": "tsc -b && tsc -b cypress",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@headlessui/react": "^1.7.4",
"@marsidev/react-turnstile": "^0.0.5",
"@prisma/client": "^4.7.1",
"@radix-ui/react-alert-dialog": "^1.0.2",
"@radix-ui/react-dialog": "*",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-switch": "^1.0.1",
"@remix-run/node": "*",
"@remix-run/react": "^1.8.1",
"@remix-run/serve": "^1.8.1",
"@remix-run/server-runtime": "*",
"@remix-validated-form/with-zod": "^2.0.5",
"@uiw/react-md-editor": "^3.19.7",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"clsx": "^1.2.1",
"cuid": "^2.1.8",
"isbot": "^3.6.5",
"isomorphic-dompurify": "^0.24.0",
"markdown-to-txt": "^2.0.1",
"marked": "^4.2.3",
"prisma": "^4.11.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"react-select": "^5.7.0",
"react-textarea-autosize": "^8.4.0",
"rehype-sanitize": "^5.0.1",
"remix-validated-form": "^4.6.5",
"slugify": "^1.6.5",
"tiny-invariant": "^1.3.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@remix-run/dev": "^1.8.1",
"@remix-run/eslint-config": "^1.8.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/cypress": "^8.0.7",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.4.10",
"@types/marked": "^4.0.7",
"@types/node": "^18.11.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.25.4",
"autoprefixer": "^10.4.13",
"binode": "^1.0.5",
"c8": "^7.12.0",
"cookie": "*",
"cross-env": "^7.0.3",
"cypress": "^11.2.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"happy-dom": "^7.7.2",
"msw": "^0.49.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"start-server-and-test": "^1.15.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3",
"vite": "^3.2.5",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "*"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}