-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
{
"name": "site",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emailjs/browser": "^3.6.2",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@reduxjs/toolkit": "^1.7.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.26",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"base-64": "^1.0.0",
"formik": "^2.2.9",
"framer-motion": "^6.2.6",
"highlight.js": "^11.5.1",
"lodash.throttle": "^4.1.1",
"msw": "^0.38.1",
"npm": "^8.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"redux-typescript": "^1.2.1",
"rehype-highlight": "^5.0.2",
"remark-directive": "^2.0.1",
"styled-breakpoints": "^11.0.4",
"styled-components": "^5.3.3",
"uniqid": "^5.4.0",
"unist-util-visit": "^4.1.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"postinstall": "node postinstall.js",
"start": "set PORT=3006 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
],
"plugins": [
"jsx-a11y"
]
},
"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/base-64": "^1.0.0",
"@types/styled-components": "^5.1.23",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^4.7.4"
},
"msw": {
"workerDirectory": "public"
}
}