-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.64 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
{
"name": "silvenon.com",
"description": "My personal website",
"homepage": "https://silvenon.com",
"author": {
"name": "Matija Marohnić",
"email": "[email protected]",
"url": "https://silvenon.com"
},
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silvenon/silvenon.com.git"
},
"license": "MIT",
"scripts": {
"setup": "npm install && lefthook run setup",
"dev": "remix vite:dev",
"build": "remix vite:build",
"deploy": "fly deploy --remote-only",
"start": "remix-serve ./build/server/index.js",
"lint": "biome check .",
"pretty": "prettier --check .",
"test": "lefthook run test",
"test:unit": "vitest run",
"test:e2e": "playwright test --reporter=list",
"typecheck": "tsc --build",
"validate": "lefthook run pre-push"
},
"dependencies": {
"@gitgraph/react": "^1.6.0",
"@react-hook/media-query": "^1.1.1",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"cloudinary-tiny-js": "^2.1.0",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"isbot": "^5.1.17",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tiny-invariant": "^1.3.3",
"toml": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@gitgraph/core": "^1.5.0",
"@mdx-js/rollup": "^3.1.0",
"@playwright/test": "^1.48.2",
"@remix-run/dev": "^2.13.1",
"@remix-run/testing": "^2.13.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/mdx": "^2.0.13",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/unist": "^3.0.3",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"cloudinary": "^2.5.1",
"happy-dom": "^15.10.8",
"lefthook": "^1.8.2",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rehype-pretty-code": "^0.14.0",
"rehype-unwrap-images": "^1.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-smartypants": "^3.0.2",
"shiki": "^1.22.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^2.1.4",
"yaml": "^2.5.0"
}
}