-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.59 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
111
112
113
{
"name": "vite-react-ts",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "husky install",
"start": "npm run start:development",
"start:development": "vite --mode development",
"start:staging": "vite --mode staging",
"start:production": "vite --mode production",
"build": "npm run build:development",
"build:development": "tsc && vite build --mode development",
"build:staging": "tsc && vite build --mode staging",
"build:production": "tsc && vite build --mode production",
"preview": "vite preview",
"lint:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\" && eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"lint": "tsc --noEmit && eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"storybook:build": "sb build",
"storybook:start": "sb dev -p 6006",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/inputmask": "^5.0.7",
"@types/invariant": "^2.2.37",
"axios": "^1.6.3",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.2",
"formik": "^2.4.5",
"immer": "^10.0.3",
"inputmask": "^5.0.8",
"inputmask.phone": "^1.0.5",
"invariant": "^2.2.4",
"libphonenumber-js": "^1.10.53",
"lodash-es": "^4.17.21",
"luxon": "^3.4.4",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.21.1",
"redux": "^5.0.1",
"storybook": "^7.6.6",
"type-fest": "^4.9.0",
"use-immer": "^0.9.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/react-vite": "^7.6.6",
"@storybook/test": "^7.6.6",
"@testing-library/react": "^14.1.2",
"@types/eslint": "^8.56.0",
"@types/jsdom": "^21.1.6",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/webrtc": "^0.0.41",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-recommended": "^4.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.69.5",
"storybook-dark-mode": "^3.0.3",
"stylelint": "^15.11.0",
"stylelint-config-twbs-bootstrap": "^12.0.0",
"typescript": "^5.0.4",
"vite": "^5.0.10",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-pwa": "^0.17.4",
"vite-plugin-stylelint": "^5.3.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}