-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"name": "blog-platform",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Production-grade blog frontend monorepo with public blog and admin dashboard, built using React, TypeScript, and pnpm workspaces.",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"format": "pnpm -r format",
"dev:web": "pnpm --filter web dev",
"dev:dashboard": "pnpm --filter dashboard dev"
},
"keywords": [
"monorepo",
"react",
"typescript",
"pnpm-workspaces",
"react-router"
],
"author": "Sameer Ali",
"license": "ISC",
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript-eslint": "^8.52.0"
}
}