-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "next-app-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "cross-env CI=true jest --passWithNoTests",
"prepare": "husky"
},
"dependencies": {
"@tailwindcss/postcss": "4.0.12",
"@tailwindcss/typography": "0.5.16",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "29.5.14",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"cross-env": "7.0.3",
"daisyui": "5.0.0",
"eslint": "9.22.0",
"eslint-config-next": "15.2.1",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next": "15.2.1",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-config-standard": "7.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwindcss": "4.0.12",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "15.4.3"
},
"engines": {
"node": "22.14.0"
},
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}