-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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": "acfharbinger-personal-website",
"version": "1.0.0",
"private": true,
"description": "A personal website and knowledge base built with Next.js, React, and TypeScript.",
"author": "ACFHarbinger",
"keywords": [
"nextjs",
"react",
"typescript",
"tailwind",
"portfolio"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"deploy": "next build && touch out/.nojekyll",
"test": "jest",
"test:watch": "jest --watch"
},
"homepage": "https://acfharbinger.github.io/github-pages",
"dependencies": {
"gray-matter": "^4.0.3",
"lucide-react": "^0.383.0",
"next": "^14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"serve": "^14.2.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"cypress": "^15.8.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.4.6",
"typescript": "^5.4.5"
}
}