-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "personal",
"version": "0.0.1",
"description": "Personal website for James Carr",
"author": "James Carr <james@jamescarr.dev>",
"homepage": "https://jamescarr.dev",
"repository": {
"type": "git",
"url": "https://github.com/jamesacarr/personal"
},
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "22.x"
},
"type": "module",
"scripts": {
"dev": "next",
"lint": "biome check --write .",
"lint:ci": "biome check .",
"prepare": "husky",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p ./tsconfig.json"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"classnames": "^2.3.2",
"http-status-codes": "^2.2.0",
"mdi-react": "^9.2.0",
"next": "^16.0.7",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.68.0",
"react-hot-toast": "^2.4.1",
"sanitize-html": "^2.10.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@commitlint/types": "^20.2.0",
"@fetch-mock/vitest": "^0.2.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^19.2.7",
"@types/sanitize-html": "^2.9.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.15",
"happy-dom": "^20.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15",
"vitest-axe": "1.0.0-pre.5"
}
}