-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.55 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": "ocw-central",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix 'src/**/*.tsx' 'src/**/*.ts'",
"check": "prettier --check .",
"generate": "graphql-codegen",
"test": "jest --passWithNoTests",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.1",
"@types/react-helmet": "^6.1.5",
"@types/react-window": "^1.8.5",
"add": "^2.0.6",
"darkreader": "^4.9.58",
"eslint-plugin-jest": "^27.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.6.0",
"i18next": "^22.0.4",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.0.1",
"js-video-url-parser": "^0.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-player": "^2.11.0",
"react-i18next": "^12.0.0",
"react-router-dom": "^6.3.0",
"react-share": "^4.4.1",
"react-window": "^1.8.7",
"vite-ssg": "^0.20.2",
"vite-ssg-sitemap": "^0.4.1",
"vite-tsconfig-paths": "^3.5.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.12.0",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "^3.3.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-svgr": "^2.2.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"public/**/*.{json}": [
"prettier --write"
]
},
"license": "MIT"
}