-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.05 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
{
"name": "remix-pwa-docs",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"apply": "npx @biomejs/biome check --write .",
"build": "remix vite:build",
"clean": "rimraf build",
"deploy": "fly deploy --remote-only",
"dev": "remix vite:dev",
"generate:metadata": "tsx scripts/generate-metadata.ts",
"format": "npx @biomejs/biome format .",
"format:write": "npx @biomejs/biome format --write .",
"lint": "npx @biomejs/biome lint .",
"lint:fix": "npx @biomejs/biome lint --write .",
"nuke": "echo \"☢️ Running nuke command...\n\";npm run clean && rimraf node_modules package-lock.json && npm install && patch-package",
"postclone": "npm run nuke",
"postinstall": "patch-package",
"pretest:e2e:run": "npm run build",
"preview": "remix vite:preview",
"start": "remix-serve ./build/server/index.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:e2e": "npm run test:e2e:dev --silent",
"test:e2e:dev": "playwright test --ui",
"test:e2e:install": "npx playwright install --with-deps chromium",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.616.0",
"@docsearch/react": "^3.6.2",
"@epic-web/client-hints": "^1.3.2",
"@epic-web/invariant": "^1.0.0",
"@headlessui/react": "^2.1.8",
"@octokit/request": "^9.1.3",
"@remix-pwa/sw": "^3.0.10",
"@remix-pwa/worker-runtime": "^2.1.4",
"@remix-run/node": "2.12.0",
"@remix-run/react": "2.12.0",
"@remix-run/serve": "2.12.0",
"@sindresorhus/slugify": "^2.2.1",
"acorn": "^8.12.1",
"algoliasearch": "^5.5.1",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"dotenv": "^16.4.5",
"isbot": "^5.1.13",
"lucide-react": "^0.412.0",
"mdx-bundler": "^10.0.3",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-spring": "^9.7.3",
"redent": "^4.0.0",
"rehype-slug": "^6.0.0",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remix-client-cache": "^1.1.0",
"remix-utils": "^7.6.0",
"spin-delay": "^2.0.0",
"unist-util-filter": "^5.0.1",
"valtio": "^1.13.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.8",
"@playwright/test": "^1.45.2",
"@remix-pwa/dev": "^3.1.0",
"@remix-run/dev": "2.12.0",
"@tailwindcss/typography": "0.5.13",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.0.3",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"gray-matter": "^4.0.3",
"jsdom": "^24.1.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"remix-development-tools": "^4.2.2",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.6",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=18.0.0"
}
}