-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.11 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
{
"name": "rest-client-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build --turbopack",
"dev": "next dev --turbopack",
"format:fix": "prettier --write .",
"lint": "eslint . --report-unused-disable-directives",
"prepare": "husky",
"sort": "npx sort-package-json",
"start": "next start",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwindcss": "^4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.5.2",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"branch-name-lint": "^3.0.1",
"daisyui": "^5.0.54",
"eslint": "^9.0",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^4.0.0-beta.0",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-unused-imports": "^4.2.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"sort-package-json": "^2.12.0",
"tailwind-merge": "^3.3.1",
"typescript": "^5",
"typescript-eslint": "^8.41.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}