forked from RicardoValdovinos/vite-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 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
{
"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",
"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.1.1",
"@nivo/bar": "^0.83.0",
"@nivo/core": "^0.83.0",
"@nivo/line": "^0.83.0",
"@nivo/pie": "^0.83.0",
"@tanstack/react-query": "^4.32.0",
"@tanstack/react-table": "^8.9.3",
"@tanstack/router": "0.0.1-beta.119",
"dayjs": "^1.11.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"zod": "^3.21.4",
"zustand": "^4.3.9"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@faker-js/faker": "^8.0.2",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@hookform/devtools": "^4.3.1",
"@playwright/test": "^1.36.2",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-styling": "^1.3.4",
"@storybook/blocks": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-vite": "^7.1.1",
"@storybook/testing-library": "0.0.14-next.2",
"@tanstack/react-query-devtools": "^4.32.0",
"@tanstack/react-table-devtools": "^8.7.6",
"@tanstack/router-devtools": "0.0.1-beta.119",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^20.4.5",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-v8": "^0.33.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"storybook": "^7.1.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vitest": "^0.33.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}