-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
{
"name": "vite-boilerplate",
"version": "1.0.0",
"description": "Boilerplate para projetos React utilizando o Vite",
"repository": "https://github.com/diasjoaovitor/next-boilerplate.git",
"author": "João Vitor <jvitordiass@outlook.com.br>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest --no-file-parallelism --run",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"generate": "plop --plopfile generators/plopfile.js",
"prepare": "husky"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.51.15",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/extenso": "^2.0.4",
"@types/pdfmake": "^0.2.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/ui": "^2.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.8",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"plop": "^4.0.1",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^2.0.2"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/x-date-pickers": "^7.13.0",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.4",
"dayjs": "^1.11.12",
"extenso": "^2.0.1",
"pdfmake": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-number-format": "^5.4.0",
"yup": "^1.4.0"
}
}