File size: 2,601 Bytes
41a71fd |
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 |
{
"name": "webrise-vite-start",
"description": "node 20.11.0",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"plop:entity": "plop entity --plopfile ./plop/plopfile.js",
"plop:feature": "plop feature --plopfile ./plop/plopfile.js",
"plop:page": "plop page --plopfile ./plop/plopfile.js",
"plop:shared": "plop shared --plopfile ./plop/plopfile.js",
"plop:widget": "plop widget --plopfile ./plop/plopfile.js",
"plop:api": "plop api --plopfile ./plop/plopfile.js",
"plop:form": "plop form --plopfile ./plop/plopfile.js",
"plop:store": "plop store --plopfile ./plop/plopfile.js",
"plop:slice": "plop slice --plopfile ./plop/plopfile.js",
"plop:component": "plop component --plopfile ./plop/plopfile.js"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-devtools": "^5.18.1",
"axios": "^1.6.7",
"inputmask": "^5.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.0",
"react-router-dom": "^6.22.0",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.14",
"@storybook/addon-interactions": "^7.6.14",
"@storybook/addon-links": "^7.6.14",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.14",
"@storybook/builder-vite": "^7.6.14",
"@storybook/react": "^7.6.14",
"@storybook/react-vite": "^7.6.14",
"@storybook/test": "^7.6.14",
"@tanstack/eslint-plugin-query": "^5.18.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"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",
"plop": "^4.0.1",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"storybook": "^7.6.14",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-svgr": "^4.2.0"
}
}
|