-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "jeffkmeng.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"test": "vitest"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@monaco-editor/react": "^4.6.0",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "22.7.4",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@types/sanitize-html": "^2.13.0",
"@vercel/analytics": "^1.3.1",
"@zip.js/zip.js": "^2.7.52",
"autoprefixer": "10.4.20",
"classnames": "^2.5.1",
"eslint": "9.12.0",
"eslint-config-next": "14.2.14",
"gasp": "^0.0.2",
"next": "14.2.14",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-ga4": "^2.1.0",
"react-scroll-parallax": "^3.4.5",
"sanitize-html": "^2.13.1",
"tailwindcss": "3.4.13",
"typescript": "5.6.2"
},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"vitest": "^2.1.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}