-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.13 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
103
104
{
"name": "vite_bundler",
"homepage": "https://kaa-it-js.github.io/react-burger-js-starter/",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"commit": "cz",
"check": "stylelint && eslint src/",
"e2e": "npx playwright test",
"e2e:ui": "npx playwright test --ui",
"dev": "vite",
"deploy": "gh-pages -d dist",
"eslint": "eslint src/ --fix",
"lint": "npm run stylelint && npm run eslint && npm run prettier",
"predeploy": "npm run build",
"prepare": "husky",
"prettier": "prettier \"./src/**/*.{js,jsx,ts,tsx,json,html,css,md}\" --write",
"preview": "vite preview",
"stylelint": "stylelint \"./src/**/*.css\" --fix",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@krgaa/react-developer-burger-ui-components": "^1.0.1",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^2.11.2",
"axios": "^1.13.6",
"core-js": "^3.45.1",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"react": "^19.1.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.1.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.14.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^25.0.9",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/browser": "^3.2.4",
"@vitest/ui": "^3.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.28.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-unused-imports": "^4.2.0",
"gh-pages": "^6.3.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"stylelint": "^16.24.0",
"stylelint-config-standard": "^39.0.0",
"stylelint-order": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-readable-classnames": "^1.5.3",
"vite-plugin-sass-dts": "^1.3.31",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"lint-staged": {
"./src/**/*.css": [
"stylelint --fix",
"prettier --write"
],
"./src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"./src/**/*.{json,html,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}