-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3 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
{
"name": "lazzaro-template",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@hookform/resolvers": "^2.9.7",
"@stripe/react-stripe-js": "^1.10.0",
"@stripe/stripe-js": "^1.35.0",
"@tanstack/react-query": "^4.0.10",
"@tanstack/react-query-devtools": "^4.0.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.6.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@vitejs/plugin-react": "^1.3.1",
"antd": "^4.21.4",
"axios": "^0.27.2",
"buffer": "^6.0.3",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.28.0",
"html-react-parser": "^3.0.4",
"i18next": "^21.9.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.10.0",
"moment": "^2.29.4",
"msw": "^0.47.3",
"react": "^18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-i18next": "^11.18.4",
"react-loading-skeleton": "^3.1.0",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.7",
"styled-components": "^5.3.5",
"swiper": "^8.4.0",
"typescript": "^4.7.4",
"vite": "^2.3.2",
"vite-plugin-checker": "^0.4.9",
"vite-plugin-svgr": "^0.3.0",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.23.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "vite --mode development",
"start:staging": "vite --mode staging",
"start:prod": "vite --mode production",
"build": "tsc && vite build --mode production",
"build:staging": "tsc && vite build --mode staging",
"preview": "vite preview",
"test": "vitest",
"ui": "vitest --ui",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"eslintConfig": {
"extends": [
"react-app"
],
"overrides": [
{
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/mapbox-gl": "^2.7.5",
"@types/moment": "^2.13.0",
"@types/react-datepicker": "^4.4.2",
"@types/styled-components": "^5.1.25",
"@types/yup": "^0.29.14",
"@typescript-eslint/parser": "^5.30.0",
"@vitest/ui": "^0.23.4",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"prop-types": "^15.8.1"
}
}