-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
88 lines (88 loc) · 2.35 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": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/poppins": "^4.4.5",
"@heroicons/react": "^1.0.2",
"@react-spring/web": "^9.7.3",
"@ristek-kit/ads": "^1.3.4",
"axios": "^0.19.0",
"copy-image-clipboard": "^2.1.2",
"framer-motion": "^4",
"html-to-image": "^1.9.0",
"ics": "^2.31.0",
"mixpanel-browser": "^2.48.1",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-burger-menu": "^2.6.10",
"react-copy-to-clipboard": "^5.0.1",
"react-countup": "^6.4.2",
"react-dom": "^16.8.6",
"react-ga": "^3.3.0",
"react-helmet": "^5.2.1",
"react-hook-form": "^7.9.0",
"react-input-autosize": "^2.2.1",
"react-media": "^1.9.2",
"react-notification-badge": "^1.5.1",
"react-redux": "^7.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"redux": "^4.0.4",
"styled-components": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:coverage": "react-scripts test --env=jest-environment-jsdom-sixteen --coverage",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-unused-imports": "^1.1.4",
"husky": "^7.0.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"react-icons": "^4.2.0"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.2"
}
}