-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.3 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
{
"name": "pog_front",
"version": "0.1.0",
"private": true,
"proxy": "http://pog-364355306.us-east-1.elb.amazonaws.com:3000",
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@uppy/core": "^2.1.6",
"@uppy/dropbox": "^2.0.5",
"@uppy/golden-retriever": "^2.0.6",
"@uppy/google-drive": "^2.0.5",
"@uppy/onedrive": "^2.0.5",
"@uppy/react": "^2.1.2",
"@uppy/tus": "^2.2.0",
"@uppy/url": "^2.0.5",
"axios": "^0.24.0",
"browser-image-compression": "^1.0.17",
"i18next": "^21.9.1",
"intersection-observer": "^0.12.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-carousel-minimal": "^1.4.1",
"react-dom": "^17.0.2",
"react-easy-swipe": "^0.0.22",
"react-i18next": "^11.18.5",
"react-loading": "^2.0.3",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"react-scripts": "4.0.3",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "prettier -w ./src && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"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": {
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.2.1",
"sass": "^1.43.4"
},
"lint-staged": {
"./src/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}