-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 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
105
106
{
"name": "landing",
"private": true,
"sideEffects": false,
"type": "module",
"workspaces": [
".react-email"
],
"scripts": {
"build": "remix build && node ./scripts/postBuild.mjs",
"create:page": "node ./scripts/createPage.mjs",
"dev": "remix dev",
"vercel": "vercel dev",
"format-code": "npm run prettier:fix & npm run lint:fix",
"lint": "eslint \"app/**/*.+(ts|tsx)\"",
"lint:fix": "npm run lint -- --fix",
"email": "email dev",
"prepare": "husky install",
"prettier": "prettier --write ./app",
"prettier:fix": "prettier app --write",
"start": "remix-serve ./build/index.js",
"test": "vitest -c ./test/vitest.config.ts --ui --coverage",
"test:ci": "vitest -c ./test/vitest.config.ts run",
"typecheck": "tsc"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.0.3",
"@react-email/components": "^0.0.25",
"@remix-run/css-bundle": "2.11.1",
"@remix-run/node": "2.4.1",
"@remix-run/react": "2.9.1",
"@remix-run/serve": "2.11.2",
"@types/crypto-js": "^4.2.2",
"@vercel/analytics": "^1.3.1",
"@vercel/remix": "2.8.0",
"ahooks": "^3.8.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"crypto-js": "^4.1.1",
"isbot": "3.8.0",
"lucide-react": "^0.427.0",
"luxon": "^3.5.0",
"nodemailer": "^6.9.14",
"pino": "^8.19.0",
"pino-pretty": "^11.2.2",
"ramda": "^0.30.1",
"ramda-adjunct": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "^2.1.6",
"react-hook-form": "^7.53.0",
"remix-auth": "^3.5.1",
"remix-auth-form": "^1.5.0",
"remix-hook-form": "^4.3.1",
"remix-utils": "^7.6.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.4.0",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@remix-run/dev": "npm:@vercel/[email protected]",
"@remix-run/eslint-config": "2.9.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/luxon": "^3.4.2",
"@types/nodemailer": "^6.4.15",
"@types/ramda": "^0.30.1",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^0.34.5",
"@vitest/ui": "^0.34.7",
"autoprefixer": "^10.4.20",
"chroma-js": "^3.1.1",
"concurrently": "^8.2.1",
"eslint": "^8.57.0",
"happy-dom": "^15.11.0",
"husky": "^9.1.6",
"pretty-quick": "^4.0.0",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.4",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^0.34.5",
"vitest-mock-extended": "^1.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}