-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.12 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
{
"name": "awesome-ssr-apollo-starter",
"version": "1.0.0",
"scripts": {
"start": "razzle start",
"start:prod": "NODE_ENV=production node build/server.js",
"build": "razzle build --noninteractive",
"test": "razzle test --env=jsdom",
"tsc": "tsc",
"lint": "eslint './**/*.{js,ts,tsx}'",
"prettify": "prettier './**/*.{js,ts,tsx,css}' --write",
"gen:types": "graphql-codegen --config codegen.js",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "3.6.9",
"@emotion/cache": "11.10.1",
"@emotion/react": "11.10.0",
"@emotion/server": "11.10.0",
"@emotion/styled": "11.10.0",
"@loadable/component": "5.15.2",
"@loadable/server": "5.15.2",
"@mui/icons-material": "5.8.4",
"@mui/material": "5.10.1",
"cross-fetch": "3.1.5",
"dotenv": "16.0.2",
"express": "4.18.1",
"i18next": "21.9.1",
"i18next-browser-languagedetector": "6.1.5",
"i18next-fs-backend": "1.1.5",
"i18next-http-backend": "1.4.1",
"i18next-http-middleware": "3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-i18next": "11.18.4",
"react-router-dom": "6.3.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-react": "7.18.6",
"@emotion/babel-plugin": "11.10.0",
"@emotion/eslint-plugin": "11.10.0",
"@graphql-codegen/cli": "2.12.1",
"@graphql-codegen/near-operation-file-preset": "2.4.1",
"@graphql-codegen/typed-document-node": "2.3.3",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@loadable/babel-plugin": "5.13.2",
"@loadable/webpack-plugin": "5.15.2",
"@svgr/webpack": "6.3.1",
"@testing-library/dom": "8.17.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.4.3",
"@types/express": "4.17.13",
"@types/i18next-fs-backend": "1.1.2",
"@types/jest": "28.1.6",
"@types/loadable__component": "5.13.4",
"@types/loadable__server": "5.12.6",
"@types/node": "18.7.3",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-helmet": "6.1.5",
"@types/react-router": "5.1.18",
"@types/react-router-dom": "5.3.3",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"babel-preset-razzle": "4.2.15",
"eslint": "7.18.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.30.1",
"graphql": "16.6.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "2.6.1",
"prettier": "2.2.1",
"razzle": "4.2.17",
"razzle-dev-utils": "4.2.17",
"razzle-plugin-babel-ts": "1.0.1",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.6.4",
"url": "0.11.0",
"webpack": "5.74.0",
"webpack-dev-server": "4.10.0"
}
}