-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.22 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
{
"name": "beauty-clinic",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"start:prod": "vite --mode production",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:analyze": "vite-bundle-visualizer",
"preview": "vite preview",
"codegen": "graphql-codegen --config codegen.ts",
"pretest": "npm run codegen -- --ignoreIfAlreadyExists",
"test": "jest --runInBand",
"test:coverage": "npm run test -- --collectCoverage",
"test:mutation": "stryker run",
"test:e2e:open": "cypress open",
"test:e2e:run": "cypress run",
"lint:check": "eslint \"./src/**/*.{js,ts,jsx,tsx}\" --max-warnings 0",
"lint:fix": "eslint \"./src/**/*.{js,ts,jsx,tsx}\" --fix",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@apollo/client": "^3.9.9",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.10",
"@tinymce/tinymce-react": "^5.1.1",
"apollo-link-token-refresh": "^0.7.0",
"cross-fetch": "^4.0.0",
"date-fns": "^3.6.0",
"dompurify": "^3.1.6",
"eventemitter3": "^5.0.1",
"formik": "^2.4.5",
"graphql": "^16.9.0",
"jwt-decode": "^4.0.0",
"mapbox-gl": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-helmet-async": "^2.0.5",
"react-responsive-masonry": "^2.2.0",
"react-router-dom": "^6.22.1",
"react-text-mask": "^5.5.0",
"yup": "^1.4.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.1.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"@eslint/js": "^9.9.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/jest-runner": "^8.2.6",
"@swc/core": "^1.5.24",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/mapbox-gl": "^3.1.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-responsive-masonry": "^2.1.3",
"@types/react-text-mask": "^5.4.14",
"@vitejs/plugin-react-swc": "^3.3.2",
"cypress": "^13.13.0",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transformer-svg": "^2.0.2",
"lint-staged": "^15.2.9",
"mri": "^1.2.0",
"prettier": "3.3.3",
"typescript": "^5.0.2",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-dts": "^4.2.1",
"vite-plugin-graphql-codegen": "^3.3.8",
"vite-plugin-string": "^1.2.3",
"vite-plugin-svgr": "^4.2.0"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"tests/e2e/support/step-definitions/**/*.{js,ts}"
]
}
}