generated from iamyuu/vitr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.97 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
{
"name": "vitr",
"private": true,
"version": "0.0.0",
"author": "Muhammad Yusuf <yusuf@iamyuu.dev> (https://iamyuu.dev)",
"scripts": {
"# general commands": "--------------------------------------------------",
"cz": "git-cz",
"# compiler commands": "--------------------------------------------------",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"# test commands": "--------------------------------------------------",
"test": "is-ci-cli test:coverage test:watch",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"# linter commands": "--------------------------------------------------",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --ignore-path .gitignore",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,css}\" --ignore-path .gitignore",
"type-check": "tsc --pretty --noEmit",
"#": "--------------------------------------------------"
},
"dependencies": {
"@emotion/react": "11.9.3",
"@hookform/resolvers": "2.9.7",
"@mantine/core": "5.0.0",
"@mantine/dropzone": "5.0.0",
"@mantine/hooks": "5.0.0",
"@mantine/modals": "5.0.0",
"@mantine/notifications": "5.0.0",
"@mantine/rte": "5.0.0",
"@tabler/icons": "1.78.1",
"@tanstack/react-query": "4.0.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-hook-form": "7.34.0",
"react-router-dom": "6.3.0",
"ufo": "0.8.5",
"zod": "3.17.10"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@commitlint/cz-commitlint": "17.0.3",
"@faker-js/faker": "7.3.0",
"@jackfranklin/test-data-bot": "2.0.0",
"@mswjs/data": "0.10.1",
"@tanstack/react-query-devtools": "4.0.10",
"@testing-library/dom": "8.16.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.3.0",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "2.0.0",
"c8": "7.12.0",
"eslint": "8.20",
"eslint-config-kentcdodds": "20.3",
"eslint-config-prettier": "8.5",
"eslint-import-resolver-alias": "1.1",
"eslint-import-resolver-typescript": "3.3",
"eslint-plugin-import": "2.26",
"eslint-plugin-jsx-a11y": "6.6",
"eslint-plugin-prettier": "4.2",
"eslint-plugin-react": "7.30",
"happy-dom": "6.0.4",
"husky": "8.0.1",
"is-ci-cli": "2.2.0",
"lint-staged": "13.0",
"msw": "0.44.2",
"prettier": "2.7",
"pretty-quick": "3.1",
"typescript": "4.7",
"vite": "3.0.3",
"vitest": "0.19.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "auto",
"printWidth": 120,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"useTabs": true
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix --cache --max-warnings 0",
"*.{js,jsx,ts,tsx,css}": "pretty-quick --staged"
},
"msw": {
"workerDirectory": "public"
}
}