-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.8 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
{
"name": "walz",
"private": true,
"sideEffects": false,
"description": "Website for Walz",
"type": "module",
"imports": {
"#app/*": "./app/*",
"#tests/*": "./tests/*"
},
"license": "UNLICENSED",
"scripts": {
"postinstall": "patch-package",
"build": "run-s build:*",
"build:react-router": "NODE_OPTIONS=--max-old-space-size=8192 react-router build",
"build:server": "tsx ./other/build-server.ts",
"dev": "node ./server/dev-server.js",
"format": "prettier --write .",
"lint": "eslint .",
"setup": "playwright install",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:e2e": "npm run test:e2e:dev --silent",
"test:e2e:dev": "playwright test --ui",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "npx playwright install --with-deps chromium",
"typecheck": "react-router typegen && tsc",
"deploy": "npm run build && fly deploy",
"start": "cross-env NODE_ENV=production node .",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"dependencies": {
"@epic-web/cachified": "^5.2.0",
"@nasa-gcn/remix-seo": "^2.0.1",
"@portabletext/react": "^3.2.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@react-router/express": "^7.1.3",
"@react-router/node": "^7.1.3",
"@react-router/remix-routes-option-adapter": "^7.1.3",
"@sanity/asset-utils": "^1.3.2",
"@sanity/client": "^6.27.1",
"@sanity/color": "^3.0.6",
"@sanity/image-url": "^1.1.0",
"@sanity/react-loader": "^1.10.39",
"@sanity/vision": "^3.71.1",
"@sentry/remix": "^8.51.0",
"@sentry/vite-plugin": "^2.23.0",
"@tailwindcss/container-queries": "^0.1.1",
"address": "^2.0.3",
"autoprefixer": "^10.4.20",
"chalk": "^5.4.1",
"class-variance-authority": "^0.7.1",
"close-with-grace": "^1.3.0",
"clsx": "^2.1.1",
"compression": "^1.7.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"embla-carousel-react": "^8.5.2",
"execa": "^9.5.2",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"fs-extra": "^11.3.0",
"get-port": "^7.1.0",
"glob": "^10.4.5",
"groq": "^3.71.1",
"isbot": "^5.1.21",
"lucide-react": "^0.453.0",
"marked": "^12.0.2",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"ramda": "^0.30.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3",
"remix-flat-routes": "^0.6.5",
"remix-utils": "^7.7.0",
"sanity": "^3.71.1",
"sanity-plugin-media": "^2.3.2",
"slug": "^9.1.0",
"spin-delay": "^2.0.1",
"styled-components": "^6.1.14",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@epic-web/config": "^1.16.5",
"@playwright/test": "^1.49.1",
"@react-router/dev": "^7.1.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.17.16",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/slug": "^5.0.9",
"@vitest/coverage-v8": "^1.6.0",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^5.4.14",
"vitest": "^1.6.0"
},
"engines": {
"node": "22"
}
}