-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.64 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
89
90
91
92
93
94
95
96
97
98
{
"name": "landing-page-v3",
"version": "2.1.0",
"repository": "https://github.com/dOrgTech/landing-page-v3.git",
"author": "dorg.tech",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.5.1",
"@mui/lab": "^5.0.0-alpha.97",
"@mui/material": "^5.5.3",
"@mui/styles": "^5.9.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/react-gtm-module": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"express": "^4.17.3",
"markdown-to-jsx": "^7.2.0",
"node-fetch": "^2.6.1",
"prism-react-renderer": "^2.0.4",
"prismjs": "^1.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fast-marquee": "^1.6.0",
"react-ga": "^3.3.0",
"react-google-recaptcha": "^3.1.0",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.28.1",
"react-markdown": "^8.0.7",
"react-multi-carousel": "^2.8.2",
"react-p5": "^1.3.30",
"react-router-dom": "^6.3.0",
"react-schemaorg": "^2.0.0",
"react-scripts": "5.0.0",
"react-select": "^5.4.0",
"schema-dts": "^1.1.0",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "serve -s build",
"dev": "react-scripts start",
"build": "CI=false react-scripts build",
"test": "react-scripts test",
"lint:check": "eslint --quiet 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'"
},
"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": {
"@svgr/webpack": "^8.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-google-recaptcha": "^2.1.9",
"eslint": "^8.12.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-react-hooks": "^1.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"file-loader": "^6.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"typescript": "^4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint:check"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}