-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.01 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "wmcp-react-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.8",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@hot-loader/react-dom": "^17.0.2",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@tinymce/tinymce-react": "^3.13.0",
"@types/fg-loadcss": "^3.1.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.1",
"@types/markdown-to-jsx": "^7.0.1",
"@types/minimatch": "^3.0.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-inlinesvg": "^1.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-scroll": "^1.8.3",
"@types/react-swipeable-views": "^0.13.1",
"@types/react-swipeable-views-utils": "^0.13.3",
"@types/styled-components": "^5.1.21",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-batch-http": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-logger": "^2.0.0",
"clsx": "^1.1.1",
"fg-loadcss": "^3.1.0",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"markdown-to-jsx": "^7.1.6",
"module-alias": "^2.2.2",
"raven-js": "^3.27.2",
"react": "^17.0.2",
"react-apollo": "^3.1.5",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-inlinesvg": "^2.3.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-scroll": "^1.8.4",
"react-swipeable-views": "^0.14.0",
"react-swipeable-views-utils": "^0.14.0",
"styled-components": "^5.3.3",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0",
"yarn": "^1.22.17"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"_moduleAliases": {
"*": [
"src/*"
],
"test/*": [
"test/*"
],
"underscore": [
"lodash"
],
"@api/*": [
"src/api/*"
],
"@public/*": [
"public/*"
],
"@images/*": [
"public/images/*"
],
"@pages/*": [
"src/pages/*"
],
"@sections/*": [
"src/sections/*"
],
"@components/*": [
"src/common/components/*"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}