-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
141 lines (141 loc) · 4.73 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "ssr-boilerplate",
"version": "2.1.1",
"repository": "https://github.com/denchiklut/ssr-boilerplate.git",
"license": "MIT",
"description": "ssr boilerplate",
"author": "Karl: [email protected]",
"scripts": {
"dev": "run-p dev:*",
"predev": "webpack --node-env development --config-name express",
"dev:build": "webpack --node-env development --config-name express --watch",
"dev:serve": "cross-env NODE_ENV=development nodemon --inspect dist/server",
"start": "run-s prod:*",
"prod:build": "rimraf dist && webpack --node-env production",
"prod:start": "cross-env NODE_ENV=production node dist/server",
"spa": "webpack serve --node-env development -c webpack/configs/spa.config.ts",
"test": "jest --coverage --coverage-reporters=lcov",
"postinstall": "husky",
"prettier": "prettier --write \"src/**/*.{ts,tsx,html,css,scss}\"",
"lint": "run-p lint:**",
"lint:script": "eslint --fix --cache --quiet ./",
"lint:style": "stylelint --fix \"src/**/*.{css,scss}\"",
"analyze": "npx webpack-bundle-analyzer dist/client/analyze.json",
"setup": "sh setup.sh"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@loadable/component": "^5.16.4",
"@loadable/server": "^5.16.5",
"classnames": "^2.5.1",
"core-js": "^3.39.0",
"dotenv": "^16.4.7",
"express": "^5.0.0",
"morgan": "^1.10.0",
"postcss": "^8.4.49",
"react": "^19.0.0",
"react-cookie": "^7.2.2",
"react-dom": "^19.0.0",
"react-helmet-async": "^2.0.5",
"react-router": "^7.1.1",
"react-router-dom": "^7.1.1",
"reflect-metadata": "^0.2.2",
"universal-cookie-express": "^7.2.2",
"url-join": "^5.0.0",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"workbox-window": "^7.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "7.25.9",
"@eslint/compat": "^1.2.4",
"@loadable/babel-plugin": "5.16.1",
"@loadable/webpack-plugin": "^5.15.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/classnames": "^2.3.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/loadable__component": "^5.13.9",
"@types/loadable__server": "^5.12.11",
"@types/loadable__webpack-plugin": "^5.7.6",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-router-dom": "^5.3.3",
"@types/require-from-string": "^1.2.3",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^10.0.0",
"@types/webpack-env": "^1.18.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/webpack-stats-plugin": "^0.3.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"babel-plugin-react-compiler": "^19.0.0-beta-b2e8e9c-20241220",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "7.1.2",
"cssnano": "^7.0.6",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-compiler": "^19.0.0-beta-b2e8e9c-20241220",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.14.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.11",
"mini-css-extract-plugin": "^2.9.2",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"react-compiler-runtime": "^19.0.0-beta-b2e8e9c-20241220",
"react-refresh": "^0.16.0",
"require-from-string": "^2.0.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"serve-favicon": "^2.5.0",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.2.0",
"webpack-hot-middleware": "2.26.1",
"webpack-node-externals": "^3.0.0",
"webpack-stats-plugin": "^1.1.3",
"workbox-precaching": "^7.3.0",
"workbox-recipes": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-webpack-plugin": "^7.3.0"
}
}