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
|
{
"name": "juick",
"version": "3.0.0",
"description": "",
"scripts": {
"test": "jest",
"build:css": "postcss --verbose --map style.css.map src/index.css -d public/",
"build:js": "esbuild src/index.js --bundle --target=safari11 --loader:.js=jsx --loader:.png=file --loader:.svg=file --outdir=public",
"build": "cross-env NODE_ENV=production concurrently \"npm run build:css\" \"npm run build:js -- --sourcemap --keep-names --minify\"",
"build:ssr": "npm run build && esbuild --bundle --sourcemap --minify --keep-names --platform=node --target=node18 --loader:.js=jsx --loader:.png=file --loader:.svg=file --outfile=public/server.js server/index.js",
"start-ssr": "npm run build:ssr && cross-env DEBUG=http node public/server.js",
"start": "cross-env NODE_ENV=development concurrently \"npm run build:js -- --watch\" \"npm run build:css -- -w\" \"live-server -V --entry-file=index.html public/\"",
"lint": "eslint src/**/*.js"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@swc/core": "^1.3.35",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.14",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsdoc": "^39.8.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"eslint-plugin-only-ascii": "^0.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"live-server": "^1.2.2",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"postcss-url": "^10.1.3",
"react-test-renderer": "^18.2.0",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^30.0.1"
},
"dependencies": {
"axios": "^1.3.2",
"axios-cache-interceptor": "^1.0.1",
"body-parser": "^1.20.1",
"config": "^3.3.9",
"core-js": "^3.27.2",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"esbuild": "^0.17.7",
"evil-icons": "^1.10.1",
"express": "^4.18.2",
"ignore-styles": "^5.0.1",
"mailparser": "^3.6.3",
"node-pushnotifications": "^2.0.3",
"node-telegram-bot-api": "^0.61.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.43.1",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.8.1",
"react-use": "^17.4.0",
"regenerator-runtime": "^0.13.11",
"svg4everybody": "^2.1.9",
"url-loader": "^4.1.1",
"url-polyfill": "^1.1.12",
"xml2js": "^0.4.23"
}
}
|