-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.59 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
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
{
"name": "rajephon-dev",
"version": "1.0.0",
"description": "Personal website and resume hosted on GitHub Pages",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:a11y": "playwright test --grep accessibility",
"generate-pdf": "node scripts/generate-pdf.js",
"validate-resume": "node scripts/validate-resume.js",
"audit": "npx lighthouse http://localhost:3000 --output html",
"analyze": "ANALYZE=true pnpm run build",
"perf": "node scripts/performance-test.js",
"deploy": "NODE_ENV=production pnpm run build && gh-pages --nojekyll -d out",
"clean": "rm -rf .next out coverage",
"setup": "pnpm install && pnpm run type-check && pnpm run lint",
"ci": "pnpm run setup && pnpm run test:coverage && pnpm run build"
},
"dependencies": {
"@iconify/iconify": "^3.1.0",
"@next/third-parties": "^15.5.3",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.4.0",
"gray-matter": "^4.0.0",
"next": "^15.0.0",
"postcss": "^8.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remark": "^15.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.0",
"remark-math": "^6.0.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0",
"unified": "^11.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gh-pages": "^6.3.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^3.0.0",
"puppeteer": "^21.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajephon/rajephon-dev.git"
},
"keywords": [
"personal-website",
"resume",
"next.js",
"github-pages",
"markdown",
"pdf-export"
],
"author": "Chanwoo Noh",
"license": "MIT"
}