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
|
{
"name": "juick",
"version": "3.0.0",
"description": "",
"scripts": {
"test": "jest",
"dist": "webpack --mode=production --progress && esbuild --bundle --sourcemap --keep-names --platform=node --target=node18 --loader:.css=file --loader:.js=jsx --loader:.png=file --loader:.svg=file --outfile=dist/server.js server/index.js",
"start-ssr": "npm run dist && cross-env DEBUG=http node dist/server.js",
"start": "webpack serve"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.2.2",
"babel-loader": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"error-overlay-webpack-plugin": "^1.1.0",
"eslint": "^8.26.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsdoc": "^39.6.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"eslint-plugin-only-ascii": "^0.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"react-test-renderer": "^18.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.14.0",
"stylelint-config-standard": "^29.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-dynamic-import"
],
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3,
"shippedProposals": true
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"dependencies": {
"@babel/register": "^7.18.9",
"axios": "^1.1.3",
"axios-cache-interceptor": "^0.10.7",
"body-parser": "^1.20.1",
"config": "^3.3.8",
"core-js": "^3.26.0",
"cors": "^2.8.5",
"esbuild": "^0.15.12",
"evil-icons": "^1.10.1",
"express": "^4.18.2",
"ignore-styles": "^5.0.1",
"mailparser": "^3.5.0",
"moment": "^2.29.4",
"node-pushnotifications": "^2.0.3",
"qs": "^6.11.0",
"react": "18.2.0",
"react-content-loader": "^6.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.39.1",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.4.3",
"react-use": "^17.4.0",
"regenerator-runtime": "^0.13.10",
"svg4everybody": "^2.1.9",
"url-loader": "^4.1.1",
"url-polyfill": "^1.1.12",
"xml2js": "^0.4.23"
}
}
|