-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.57 KB
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
{
"name": "vite_bundler",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path ./.prettierignore",
"check": "npm run stylelint:fix && npm run lint && npm run format",
"commit": "npm run check && cz",
"cypress:open": "cypress open",
"cypress": "cypress run",
"test": "vitest",
"test:ui": "vitest --ui",
"test:ingredients": "vitest run src/services/ingredientsSlice.test.ts",
"test:ingredients:watch": "vitest src/services/ingredientsSlice.test.ts",
"test:constructor": "vitest run src/services/constructorSlice.test.ts",
"test:constructor:watch": "vitest src/services/constructorSlice.test.ts",
"test:order": "vitest run src/services/orderSlice.test.ts",
"test:order:watch": "vitest src/services/orderSlice.test.ts",
"test:user": "vitest run src/services/userSlice.test.ts",
"test:user:watch": "vitest src/services/userSlice.test.ts",
"test:user-feed": "vitest run src/services/user-feed/userFeedSlice.test.ts",
"test:user-feed:watch": "vitest src/services/user-feed/userFeedSlice.test.ts",
"test:all-feed": "vitest run src/services/all-feed/allFeedSlice.test.ts",
"test:all-feed:watch": "vitest src/services/all-feed/allFeedSlice.test.ts"
},
"dependencies": {
"@babel/runtime": "^7.25.4",
"@reduxjs/toolkit": "^2.8.2",
"@ya.praktikum/react-developer-burger-ui-components": "1.14.2",
"core-js": "^3.38.1",
"lodash-es": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.16.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.0.7",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/browser": "^3.1.2",
"@vitest/ui": "^3.0.9",
"commitizen": "^4.3.1",
"cypress": "^14.5.2",
"cypress-real-events": "^1.14.0",
"cypress-vite": "^1.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-postcss-modules": "^2.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fetch-mock": "^12.5.3",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"react-router-dom": "^7.6.2",
"react-test-renderer": "^18.3.1",
"redux-mock-store": "^1.5.5",
"stylelint": "^16.16.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^5.0.8",
"vitest": "^3.0.9"
},
"lint-staged": {
"*.css": "npm run stylelint:fix",
"*.{js,jsx,ts,tsx}": "npm run lint",
"*.{js,jsx,ts,tsx,json,css,md}": "npm run format"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}