-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "react-clean-architecture",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"dev": "vite --open",
"build": "vite build && yarn tailwindcss:build",
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
"tailwindcss:build": "npx tailwindcss -i ./src/core/presentation/styles/index.css -o ./dist/tailwind.css",
"tailwindcss:dev": "yarn tailwindcss:build --watch"
},
"dependencies": {
"@headlessui/react": "1.7.5",
"@hookform/resolvers": "^3.1.1",
"axios": "^1.1.3",
"class-transformer": "^0.5.1",
"classnames": "^2.3.2",
"i18next": "~23.4.0",
"inversiland": "^0.6.0",
"mobx": "^6.10.2",
"mobx-react": "^9.0.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.45.2",
"react-i18next": "~13.0.2",
"react-icons": "^4.10.1",
"react-router-dom": "^6.18.0",
"react-toastify": "^9.1.3",
"reflect-metadata": "^0.2.2",
"zod": "^3.21.4",
"zod-i18n-map": "~2.14.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@carlossalasamper/eslint-config": "^0.1.4",
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-alias": "^5.0.0",
"@types/react": "^18.2.25",
"@types/react-dom": "~18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"commitlint": "^17.7.1",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.6",
"vite": "^4.4.7",
"vite-plugin-checker": "^0.6.1",
"web-vitals": "^3.4.0"
}
}