-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "about",
"version": "0.1.0",
"private": true,
"author": {
"name": "Matthew Carr"
},
"engines": {
"node": "22.x",
"npm": "10.x"
},
"engineStrict": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint",
"lint:fix": "next lint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"next": "15.0.4",
"react": "^19",
"react-dom": "^19",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,css,md,html,ts,tsx,json,md}": "prettier --write ."
}
}