-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.03 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.03 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "tomy-blog",
"private": true,
"version": "1.0.0",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.12.1",
"scripts": {
"blog-dev": "npm-run-all --parallel css-dev hugo-dev",
"blog-build": "npm-run-all css-build hugo-build",
"email-dev": "email dev",
"email-lint": "eslint emails",
"email-format": "prettier --write emails",
"email-send": "npm-run-all hugo-build && tsx emails/sendEmail.tsx",
"api-dev": "ENABLE_EXPERIMENTAL_COREPACK=1 vercel dev",
"hugo-dev": "hugo server --gc --minify -O --environment development --bind 127.0.0.1 --port 1313",
"prehugo-build": "npm-run-all hugo-clean",
"hugo-build": "hugo --gc --minify --environment production",
"hugo-clean": "rimraf public/* resources/*",
"css-setup": "ln -sf themes/congo/tailwind.config.js .",
"precss-dev": "npm-run-all css-setup",
"css-dev": "NODE_ENV=development ./themes/congo/node_modules/tailwindcss/lib/cli.js -c ./themes/congo/tailwind.config.js -i ./themes/congo/assets/css/main.css -o ./assets/css/compiled/main.css --jit -w",
"precss-build": "npm-run-all css-setup",
"css-build": "NODE_ENV=production ./themes/congo/node_modules/tailwindcss/lib/cli.js -c ./themes/congo/tailwind.config.js -i ./themes/congo/assets/css/main.css -o ./assets/css/compiled/main.css --jit"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@vercel/node": "^5.3.10",
"eslint": "^9.29.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vercel": "^44.7.3"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@react-email/components": "^0.0.42",
"gray-matter": "^4.0.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-email": "^4.0.16",
"resend": "^4.6.0",
"tsx": "^4.20.3"
}
}