-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
120 lines (120 loc) · 3.78 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
{
"private": true,
"name": "sergiodxa.com",
"description": "The code behind sergiodxa.com",
"license": "MIT",
"type": "module",
"scripts": {
"ci": "bun run build & bun run check & bun run test -- --run && bun run typecheck",
"build": "remix build",
"dev": "remix dev --manual -c \"bun run start\"",
"start": "wrangler pages dev --compatibility-date=2023-06-21 --port 3000 ./public",
"typecheck": "tsc --noEmit --project tsconfig.json",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"test": "vitest",
"test:coverage": "vitest --coverage",
"script": "ts-node --require tsconfig-paths/register",
"script:download": "bun run script -- scripts/download.ts",
"update:remix": "npx upgrade-remix",
"cf:logs": "wrangler pages deployment tail --project-name sergiodxa",
"db:create": "wrangler d1 create",
"db:drop": "wrangler d1 delete",
"db:list": "wrangler d1 list",
"db:run": "wrangler d1 execute",
"db:migration:create": "wrangler d1 migrations create",
"db:migration:list": "wrangler d1 migrations list",
"db:migration:run": "wrangler d1 migrations apply",
"g:icons": "bunx rmx-cli svg-sprite icons app/components",
"postg:icons": "prettier --write app/components/icon.tsx && eslint --fix app/components/icon.tsx"
},
"lint-stage": {
"*.{ts,tsx}": ["eslint --fix"],
"*": ["prettier --ignore-unknown"]
},
"eslintIgnore": ["/node_modules", "/server/build", "/public/build"],
"dependencies": {
"@heroicons/react": "^2.1.5",
"@markdoc/markdoc": "^0.4.0",
"@octokit/auth-app": "^7.1.3",
"@octokit/core": "^6.1.2",
"@paralleldrive/cuid2": "^2.2.2",
"@remix-run/cloudflare": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@sergiodxa/api-client": "^1.0.2",
"@tailwindcss/typography": "^0.5.15",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"collected-notes": "^2.3.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.3",
"front-matter": "^4.0.2",
"fuse.js": "^7.0.0",
"htmlparser2": "^9.0.0",
"i18next": "^23.16.5",
"i18next-browser-languagedetector": "^8.0.0",
"inflected": "^2.1.0",
"is-ip": "^5.0.1",
"isbot": "^5.1.17",
"lucide-react": "^0.460.0",
"nprogress": "^0.2.0",
"prettier": "^3.3.3",
"prism-theme-github": "^1.0.2",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-aria": "^3.35.1",
"react-aria-components": "^1.4.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"remark": "^15.0.1",
"remix-auth": "^3.7.0",
"remix-auth-oauth2": "^2.4.0",
"remix-i18next": "^6.4.1",
"remix-utils": "^7.7.0",
"spin-delay": "^2.0.1",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.3.0",
"tiny-invariant": "^1.3.3",
"turbo-stream": "^2.4.1",
"ulidx": "^2.4.1",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241112.0",
"@faker-js/faker": "^9.2.0",
"@remix-run/dev": "^2.14.0",
"@remix-run/node": "^2.14.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/bun": "^1.1.13",
"@types/dotenv": "^8.2.3",
"@types/inflected": "^2.1.3",
"@types/nprogress": "^0.2.0",
"@types/primer__octicons": "^19.11.0",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-v8": "^2.1.5",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.28.1",
"get-port": "^7.1.0",
"happy-dom": "^15.11.6",
"lint-staged": "^15.2.10",
"msw": "^2.6.4",
"pptr-testing-library": "^0.8.0",
"rmx-cli": "^0.4.16",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.1.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5",
"wrangler": "^3.87.0"
},
"sideEffects": false
}