This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "boilerplate",
"version": "0.1.1",
"private": true,
"dependencies": {
"@sentry/browser": "^6.19.3",
"axios": "^0.26.1",
"formik": "^2.2.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-ga": "^3.3.0",
"react-google-recaptcha": "^2.1.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.2",
"react-scripts": "^5.0.0",
"react-spinkit": "^3.0.0",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"config:prod": "cp .env.production.template .env",
"config:dev": "cp .env.development.template .env"
},
"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": {
"@babel/helper-builder-react-jsx": "^7.16.7",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.14",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-spinkit": "^3.0.7",
"@types/styled-components": "^5.1.24",
"@types/yup": "^0.29.13",
"babel-plugin-macros": "^3.1.0",
"typescript": "^4.6.3"
}
}