-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
125 lines (125 loc) · 4.1 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "vite-react-boilerplate",
"author": "Ricardo Valdovinos <[email protected]>",
"description": "A production ready, batteries included starter template for Vite + React projects",
"keywords": [
"vite",
"react",
"boilerplate",
"starter",
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/RicardoValdovinos/vite-react-boilerplate"
},
"license": "MIT",
"version": "1.0.0",
"type": "module",
"scripts": {
"setup": "git init && npx husky init && npx playwright install && shx rm .husky/pre-commit",
"format": "prettier \"src/**/*.{ts,tsx}\" --write",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --max-warnings 0 --fix",
"dev": "vite",
"storybook": "storybook dev -p 6006",
"storybook:setup": "node node_modules/@storybook/addon-styling/bin/postinstall.js",
"storybook:build": "storybook build",
"test": "vitest run src/ && playwright test",
"test:unit": "vitest src/",
"test:unit:coverage": "vitest --coverage src/",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report",
"build": "tsc && vite build",
"preview": "vite preview",
"commitlint": "commitlint --edit",
"commitizen": "exec < /dev/tty && git cz --hook || true",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@nivo/bar": "^0.87.0",
"@nivo/core": "^0.87.0",
"@nivo/line": "^0.87.0",
"@nivo/pie": "^0.87.0",
"@tanstack/react-query": "^5.53.1",
"@tanstack/react-router": "^1.51.6",
"@tanstack/react-table": "^8.20.5",
"dayjs": "^1.11.13",
"i18next": "^23.14.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.1",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@faker-js/faker": "^8.4.1",
"@headlessui/react": "^2.1.3",
"@heroicons/react": "^2.1.5",
"@hookform/devtools": "^4.3.1",
"@playwright/test": "^1.46.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-themes": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@tanstack/react-query-devtools": "^5.53.1",
"@tanstack/react-table-devtools": "^8.20.5",
"@tanstack/router-devtools": "^1.51.6",
"@tanstack/router-plugin": "^1.51.6",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.6.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "2.0.5",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"shx": "^0.3.4",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "5.4.2",
"vite-plugin-static-copy": "^1.0.6",
"vitest": "2.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}