-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.7 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
{
"name": "react-burger",
"version": "0.1.0",
"private": true,
"homepage": "https://cap-bernardito.github.io/space-burger/",
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.4",
"@types/js-cookie": "^3.0.2",
"@types/node": "^16.18.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@ya.praktikum/react-developer-burger-ui-components": "^1.14.0",
"framer-motion": "^7.10.3",
"hamburger-react": "^2.5.0",
"js-cookie": "^3.0.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.5.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.1",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"typescript": "^4.9.4",
"web-vitals": "^3.1.0"
},
"scripts": {
"start": "cross-env PUBLIC_URL=/ react-scripts start",
"start:fd": "cross-env PUBLIC_URL=/ REACT_APP_DATA_SOURCE=fake-data react-scripts start",
"build": "cross-env PUBLIC_URL=/ react-scripts build",
"lint:prettier": "prettier --list-different .",
"lint:js": "eslint --cache --ext \".js,.jsx,.ts,.tsx\" .",
"lint": "npm-run-all -l -p \"lint:**\"",
"test:watch": "cross-env PUBLIC_URL=/ react-scripts test",
"test": "cross-env PUBLIC_URL=/ react-scripts test --watchAll=false",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"eject": "react-scripts eject",
"prepare": "husky install",
"predeploy": "react-scripts build && cp build/index.html build/404.html",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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/redux-mock-store": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"cypress": "^12.1.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prop-types": "^15.8.1",
"redux-mock-store": "^1.5.4",
"sass": "^1.57.1"
}
}