-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "website",
"version": "0.1.0",
"keywords": [
"react",
"typescript",
"next",
"next.js",
"tailwindcss",
"portfolio",
"blog"
],
"description": "A portfolio website made using the Next.js framework and TailwindCSS. Written in Typescript.",
"homepage": "https://triassic.dev",
"bugs": "https://github.com/RealTriassic/Website/issues",
"repository": {
"type": "git",
"url": "https://github.com/RealTriassic/Website"
},
"author": "Triassic",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"turbo": "bunx turbo@2.2.3",
"build:turbo": "bun turbo run build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && bun format",
"type-check": "tsc --noEmit",
"check:turbo": "bun turbo lint type-check",
"format": "prettier --write src",
"prepare": "husky"
},
"dependencies": {
"framer-motion": "11.11.10",
"gray-matter": "4.0.3",
"next": "15.0.2",
"next-mdx-remote": "5.0.0",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"react-icons": "5.3.0",
"typewriter-effect": "2.21.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/cz-commitlint": "19.5.0",
"@types/react": "18.3.12",
"commitizen": "4.3.1",
"tailwindcss": "3.4.14",
"postcss": "8.4.47",
"eslint": "9.13.0",
"eslint-config-next": "15.0.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"next-sitemap": "4.2.3",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18.18.x"
},
"packageManager": "bun@1.1.33"
}