-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
101 lines (101 loc) · 3.06 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
{
"name": "react-ssr-template",
"version": "1.0.0",
"description": "Simple template for a website with SSR and React",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artem-malko/react-ssr-template.git"
},
"author": "Artem Malko",
"license": "MIT",
"bugs": {
"url": "https://github.com/artem-malko/react-ssr-template/issues"
},
"homepage": "https://github.com/artem-malko/react-ssr-template#readme",
"sideEffects": false,
"dependencies": {
"@tanstack/react-query": "5.35.5",
"bidi-css-js": "3.1.0",
"cookie-parser": "1.4.6",
"express": "4.19.2",
"express-useragent": "1.0.15",
"inline-style-prefixer": "7.0.0",
"js-cookie": "3.0.5",
"lodash.mergewith": "4.6.2",
"lodash.snakecase": "4.1.1",
"path-to-regexp": "6.2.2",
"pino": "9.0.0",
"pino-pretty": "11.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "4.0.13",
"react-redux": "9.1.2",
"redux": "5.0.1",
"redux-logger": "3.0.6",
"set-cookie-parser": "2.6.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@tanstack/react-query-devtools": "5.35.5",
"@testing-library/react": "15.0.7",
"@types/chai": "4.3.14",
"@types/chai-dom": "1.11.3",
"@types/cookie-parser": "1.4.7",
"@types/express": "4.17.21",
"@types/express-useragent": "1.0.5",
"@types/inline-style-prefixer": "5.0.3",
"@types/js-cookie": "3.0.6",
"@types/lodash.snakecase": "4.1.9",
"@types/mocha": "10.0.6",
"@types/node": "20.12.6",
"@types/pino": "7.0.5",
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta",
"@types/redux-logger": "3.0.13",
"@types/sinon": "17.0.3",
"@types/uuid": "9.0.8",
"@types/webpack-env": "1.18.5",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"caniuse-api": "3.0.0",
"chai": "5.1.1",
"chai-dom": "1.12.0",
"compression-webpack-plugin": "11.1.0",
"esbuild": "0.21.1",
"esbuild-loader": "4.1.0",
"eslint": "8.56.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-boundaries": "4.2.0",
"eslint-plugin-functional": "6.5.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.2",
"jsdom": "24.0.0",
"mocha": "10.4.0",
"mock-local-storage": "1.1.24",
"morgan": "1.10.0",
"nodemon": "3.1.0",
"nyc": "15.1.0",
"prettier": "3.2.5",
"sinon": "17.0.2",
"source-map-support": "0.5.21",
"terser-webpack-plugin": "5.3.10",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.5",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-livereload-plugin": "3.0.2",
"webpack-npm-dependencies-analyzer": "1.0.1",
"webpack-stats-plugin": "1.1.3"
},
"overrides": {
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta"
}
}