forked from Online-discount-card-service/odcs-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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
{
"name": "odcs-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://online-discount-card-service.github.io/odcs-frontend/",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build-dev": "tsc && vite build --mode development",
"preview": "vite preview",
"preview-dev": "vite preview --port 5173",
"lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier . --write",
"prepare": "husky install",
"commit": "cz",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"predeploy": "npm run build-storybook",
"deploy-storybook": "npm run predeploy && touch storybook-static/.nojekyll && gh-pages -d storybook-static -t true"
},
"lint-staged": {
"*.{ts,tsx}": "npm run lint",
"*.{ts,tsx,css,md,html,json}": "npm run format"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@mui/icons-material": "^5.14.16",
"react": "^18.2.0",
"react-barcode": "^1.4.6",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-imask": "^7.1.3",
"react-router-dom": "^6.18.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"storybook-addon-react-router-v6": "^2.0.9",
"typeface-nunito": "^1.1.13",
"typeface-roboto": "^1.1.13",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.15",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-themes": "^7.5.1",
"@storybook/addon-viewport": "^7.5.2",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-vite": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/react-slick": "^0.23.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "3.0.3",
"storybook": "^7.5.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}