-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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": "inventory",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.6",
"@mui/material": "^5.14.6",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.46",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-query": "^1.2.9",
"@types/react-redux": "^7.1.26",
"@types/aos": "^3.0.4",
"@types/lodash": "^4.14.198",
"@types/react-router-dom": "^5.3.3",
"aos": "^2.3.4",
"axios": "^1.5.0",
"bootstrap": "^5.3.2",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"formik": "^2.4.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-redux": "^8.1.2",
"react-router-dom": "^6.16.0",
"react-scripts": "5.0.1",
"react-select": "^5.7.4",
"react-spring": "^9.7.2",
"react-transition-group": "^4.4.5",
"redux": "^4.2.1",
"socket.io-client": "^4.7.2",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"yup": "^1.2.0"
},
"homepage": "https://bohdan-mykhailenko.github.io/inventory",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint --ext .ts,.tsx --ignore-path .eslintignore",
"prepare": "husky install",
"sass": "sass --watch --style expanded src/styles/index.scss src/App.css"
},
"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": {
"eslint": "^8.48.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"sass": "^1.66.1"
},
"lint-staged": {
"*.js": "npm run lint"
}
}