-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.45 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
{
"name": "journal-stack",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"clean": "rimraf build",
"deploy": "fly deploy --remote-only",
"dev": "remix vite:dev",
"generate:metadata": "tsx scripts/generate-metadata.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"nuke": "echo \"☢️ Running nuke command...\n\";npm run clean && rimraf node_modules package-lock.json && npm i",
"postclone": "npm run nuke",
"pretest:e2e:run": "npm run build",
"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.499.0",
"@epic-web/client-hints": "^1.2.2",
"@epic-web/invariant": "^1.0.0",
"@headlessui/react": "^2.0.3",
"@octokit/request": "^9.1.1",
"@remix-pwa/sw": "^3.0.7",
"@remix-pwa/worker-runtime": "^2.1.2",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@sindresorhus/slugify": "^2.2.1",
"acorn": "^8.11.3",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"dotenv": "^16.4.5",
"isbot": "^3.6.8",
"lucide-react": "^0.379.0",
"mdx-bundler": "^10.0.1",
"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": "^4.0.1",
"remark-gfm": "^4.0.0",
"remix-client-cache": "^1.0.1",
"remix-utils": "^7.6.0",
"unist-util-filter": "^5.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@playwright/test": "^1.41.1",
"@remix-pwa/dev": "^3.0.5",
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@tailwindcss/typography": "0.5.9",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/prismjs": "^1.26.3",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"all-contributors-cli": "^6.26.1",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"gray-matter": "^4.0.3",
"jsdom": "^24.0.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"remix-development-tools": "^3.7.4",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.1.6",
"vite": "^5.0.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}