forked from RicardoValdovinos/vite-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.54 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
{
"name": "vite-react-boilerplate",
"author": "Ricardo Valdovinos <ricardovaldovinos1996@gmail.com>",
"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 && husky install && npx playwright install",
"format": "prettier src/**/*.{ts,tsx} --write",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext ts,tsx --report-unused-disable-directives --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"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@nivo/bar": "^0.84.0",
"@nivo/core": "^0.84.0",
"@nivo/line": "^0.84.0",
"@nivo/pie": "^0.84.0",
"@tanstack/react-query": "^5.18.0",
"@tanstack/react-router": "^1.15.7",
"@tanstack/react-table": "^8.11.7",
"@tanstack/router-vite-plugin": "^1.15.4",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@faker-js/faker": "^8.4.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@hookform/devtools": "^4.3.1",
"@playwright/test": "^1.41.1",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.6.12",
"@storybook/react": "^7.6.12",
"@storybook/react-vite": "^7.6.12",
"@storybook/testing-library": "0.2.2",
"@tanstack/react-query-devtools": "^5.18.0",
"@tanstack/react-table-devtools": "^8.11.7",
"@tanstack/router-devtools": "1.15.7",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.11.14",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "0.33.0",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^9.0.7",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"storybook": "^7.6.12",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "4.4.7",
"vitest": "0.33.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}