-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.04 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
{
"name": "TechTrek",
"type": "module",
"version": "0.0.1-alpha.4",
"private": true,
"packageManager": "pnpm@9.15.1",
"description": "My Simple Personal website",
"author": "Zach <https://ssstttar.com>",
"license": "MIT",
"homepage": "https://github.com/Zach677/TechTrek",
"repository": {
"type": "git",
"url": "https://github.com/Zach677/TechTrek.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "NODE_ENV=production NODE_OPTIONS=--max_old_space_size=4096 next build",
"build:ci": "NODE_ENV=production NODE_OPTIONS=--max_old_space_size=4096 NEXT_TELEMETRY_DISABLED=1 CI=true next build",
"bump": "vv",
"dev": "NODE_ENV=development next dev -p 2323",
"dev:turbo": "NODE_ENV=development next dev -p 2323 --turbo",
"lint": "eslint",
"prebuild": "rimraf .next || exit 0",
"prepare": "pnpm exec simple-git-hooks",
"prod:pm2": "NODE_ENV=production pm2 restart ecosystem.config.cjs",
"prod:reload": "pm2 reload ecosystem.config.cjs",
"prod:stop": "pm2 stop ecosystem.config.cjs",
"start": "npm run dev",
"test": "vitest run --config vitest.config.ts"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.15",
"clsx": "^2.1.1",
"commitlint-config-gitmoji": "^2.3.1",
"motion": "11.15.0",
"next": "14.2.21",
"postcss-import": "^16.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@floating-ui/react-dom": "^2.1.2",
"@iconify-json/material-symbols": "^1.2.12",
"@iconify-json/mingcute": "^1.2.2",
"@iconify/tailwind": "^1.2.0",
"@innei/prettier": "^0.15.0",
"@peculiar/webcrypto": "^1.5.0",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^20.17.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"bypass-vue-devtools": "^0.0.6",
"daisyui": "^4.12.22",
"dayjs": "^1.11.13",
"eslint": "^9.17.0",
"eslint-config-hyoban": "^3.1.15",
"happy-dom": "^15.11.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"nbump": "^2.0.7",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animated": "^1.1.2",
"typescript": "5.7.2",
"vitest": "^2.1.8",
"vitest-canvas-mock": "^0.3.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
},
"bump": {
"before": [
"git pull --rebase"
],
"after": [
"gh pr create --title 'chore: Release v${NEW_VERSION}' --body 'v${NEW_VERSION}' --base main --head dev"
],
"commit_message": "chore(release): release v${NEW_VERSION}",
"tag": false,
"changelog": true,
"allowed_branches": [
"dev"
]
}
}