-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 KB
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
{
"name": "webcligui",
"version": "1.0.0",
"description": "Service to run tasks on multiple servers through the country, or even all the servers nationwide",
"type": "module",
"scripts": {
"build": "if [ -d dist ]; then rm -rf dist; fi && webpack --stats-error-details",
"watch": "if [ -d dist ]; then rm -rf dist; fi && NODE_OPTIONS='--max-old-space-size=2048' webpack serve --mode development",
"clean": "rm -rf node_modules dist; find . -name __pycache__ -type d -exec rm -rf {} +;"
},
"repository": {
"type": "git",
"url": "https://github.com/cliGui/webCliGui.git"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
"@redux-devtools/extension": "^3.3.0",
"@tailwindcss/postcss": "^4.1.11",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.21",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.2.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-refresh": "^0.17.0",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.11",
"ts-loader": "^9.5.2",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.2",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@types/rc-tree": "^1.11.4",
"bootstrap": "^5.3.8",
"clsx": "^2.1.1",
"immer": "^11.0.1",
"rc-tree": "^5.13.1",
"react-bootstrap": "^2.10.10",
"react-markdown": "^10.1.0",
"zustand": "^5.0.9"
}
}