-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.44 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": "cosn.io",
"description": "Pragmatic Optimism, Cosmin's personal blog.",
"type": "module",
"prettier": "@cosn/tsc/prettier",
"packageManager": "[email protected]",
"scripts": {
"build": "next build",
"dev": "next dev",
"test": "vitest run",
"test:unit": "vitest",
"test:e2e": "playwright test",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky",
"check-types": "tsc --noEmit"
},
"lint-staged": {
"*": "pnpm format",
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm lint"
},
"keywords": [
"cos",
"blog",
"impatient optimism"
],
"repository": {
"type": "git",
"url": "git://github.com/cosn/cosn.github.io.git"
},
"author": {
"name": "Cosmin Nicolaescu",
"email": "[email protected]",
"url": "https://cosn.io"
},
"dependencies": {
"@clerk/nextjs": "^5.7.5",
"@clerk/themes": "^2.1.40",
"@headlessui/react": "^1.7.19",
"@upstash/redis": "^1.34.3",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"lucide-react": "^0.379.0",
"next": "^14.2.16",
"next-themes": "^0.2.1",
"pino": "^9.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^4.0.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^2.5.4",
"winston": "^3.15.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@cosn/tsc": "^1.25.0",
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^14.2.16",
"@playwright/test": "^1.48.2",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.7",
"@types/mdx": "^2.0.13",
"@types/node": "^20.17.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webpack-env": "^1.18.5",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"fast-glob": "^3.3.2",
"husky": "^9.1.6",
"jsdom": "^24.1.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"sharp": "0.33.1",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"turbo": "latest",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}