-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.89 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
{
"name": "motd-menu",
"workspaces": [
"packages/common",
"packages/client",
"packages/server"
],
"scripts": {
"start:server": "npm run start -w packages/server",
"build:server": "npm run build -w packages/server",
"build:client": "npm run build -w packages/client",
"watch:server": "npm run watch -w packages/server",
"watch:client": "npm run watch -w packages/client",
"storybook": "npm run storybook -w packages/client",
"build": "npm run build --workspaces --if-present",
"start": "concurrently -n sv,cl \"npm run start:server\" \"npm run build:client\"",
"watch": "concurrently -n sv,cl \"npm run watch:server\" \"npm run watch:client\"",
"launch": "npm run launch -w packages/server",
"build-storybook": "storybook build",
"postinstall": "npm run postinstall --workspaces --if-present"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.9.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-onboarding": "^8.3.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-webpack5": "^8.3.0",
"@storybook/test": "^8.3.0",
"@svgr/webpack": "^8.1.0",
"@types/color": "^3.0.6",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/geoip-lite": "^1.4.4",
"@types/lodash": "^4.17.7",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@types/webpack-env": "^1.18.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"babel-loader": "^9.1.3",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.0.1",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.38.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"jss": "^10.10.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"raw-loader": "^4.0.2",
"storybook": "^8.3.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.6.2",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@babel/plugin-transform-class-properties": "^7.25.4",
"@dnd-kit/core": "^6.1.0",
"@types/pg": "^8.11.9",
"body-parser": "^1.20.3",
"classnames": "^2.5.1",
"color": "^4.2.3",
"cookie": "^1.0.1",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"express-static-gzip": "^2.1.8",
"geoip-lite": "^1.4.10",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"node-telegram-bot-api": "^0.63.0",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.3.1",
"react-jss": "^10.10.0",
"react-markdown": "^9.0.1",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.26.2",
"react-use": "^17.5.1",
"recharts": "^2.13.0-alpha.5",
"remark-gfm": "^4.0.0",
"uuid": "^10.0.0",
"ws": "^8.18.0"
}
}