-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
132 lines (132 loc) · 3.9 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "epic-content-stack",
"private": true,
"sideEffects": false,
"type": "module",
"imports": {
"#*": "./*"
},
"scripts": {
"build": "run-s build:*",
"build:icons": "tsx ./other/build-icons.ts",
"build:remix": "remix vite:build --sourcemapClient --sourcemapServer",
"build:server": "tsx ./other/build-server.ts",
"predev": "npm run build:icons --silent",
"dev": "node ./server/dev-server.js",
"format": "prettier --write .",
"lint": "eslint .",
"start": "cross-env NODE_ENV=production node .",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc",
"validate": "run-p \"test -- --run\" lint typecheck"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
],
"dependencies": {
"@conform-to/react": "^1.0.4",
"@conform-to/zod": "^1.0.4",
"@epic-web/cachified": "^5.1.2",
"@epic-web/client-hints": "^1.3.0",
"@epic-web/invariant": "^1.0.0",
"@nasa-gcn/remix-seo": "^2.0.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/express": "2.8.1",
"@remix-run/node": "2.8.1",
"@remix-run/react": "2.8.1",
"@remix-run/server-runtime": "2.8.1",
"@sentry/profiling-node": "^7.107.0",
"@sentry/remix": "^7.107.0",
"address": "^2.0.2",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"close-with-grace": "^1.3.0",
"clsx": "^2.1.0",
"compression": "^1.7.4",
"cookie": "^0.6.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"eslint-plugin-remix-react-routes": "^1.0.5",
"execa": "^8.0.1",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"get-port": "^7.0.0",
"glob": "^10.3.10",
"helmet": "^7.1.0",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^5.1.2",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^7.5.0",
"set-cookie-parser": "^2.6.0",
"sonner": "^1.4.3",
"source-map-support": "^0.5.21",
"spin-delay": "^2.0.0",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^2.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@remix-run/dev": "2.8.1",
"@remix-run/eslint-config": "2.8.1",
"@remix-run/serve": "2.8.1",
"@sentry/vite-plugin": "^2.16.0",
"@sly-cli/sly": "^1.10.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie": "^0.6.0",
"@types/eslint": "^8.56.6",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/set-cookie-parser": "^2.4.7",
"@types/source-map-support": "^0.5.10",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.4.0",
"autoprefixer": "^10.4.18",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"jsdom": "^24.0.0",
"node-html-parser": "^6.1.12",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"remix-flat-routes": "^0.6.4",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.4.0"
},
"engines": {
"node": "20"
},
"epic-stack": true
}