-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.71 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"dependencies": {
"@material/material-color-utilities": "^0.3.0",
"@toast-ui/editor": "^3.1.0",
"beercss": "^3.13.1",
"canvas-confetti": "^1.9.4",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-chart-matrix": "^3.0.0",
"chartjs-plugin-zoom": "^2.2.0",
"date-fns": "^4.1.0",
"dxf": "^5.3.1",
"flatpickr": "^4.6.13",
"fuse.js": "^7.1.0",
"material-dynamic-colors": "^1.1.2",
"material-file-icons": "^2.4.0",
"morphdom": "^2.7.7",
"puppeteer": "^24.34.0",
"qrcode": "^1.5.4",
"swapy": "^1.0.5",
"vis-timeline": "^8.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/canvas-confetti": "^1.9.0",
"@types/dxf": "^4.6.10",
"@types/pdfmake": "^0.2.12",
"@types/qrcode": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@typescript-eslint/utils": "^8.51.0",
"compression-webpack-plugin": "^11.1.0",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"esbuild": "^0.27.2",
"esbuild-loader": "^4.4.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"glob": "^13.0.0",
"glob-all": "^3.3.1",
"html-webpack-plugin": "^5.6.5",
"mini-css-extract-plugin": "^2.9.4",
"pdfjs-dist": "^5.4.530",
"purgecss-webpack-plugin": "^7.0.2",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"workbox-webpack-plugin": "^7.4.0"
},
"name": "invigo-server",
"description": "LAN file sharing server that Invigo relies on to keep all clients synced and a website with built in production planning and analytics.",
"version": "1.0.0",
"main": "main.py",
"scripts": {
"dev:frontend": "webpack --config src/config/webpack/webpack.dev.js --watch",
"dev:backend": "./.venv/bin/python main.py",
"dev:puppeteer": "cd puppeteer && npm run run",
"dev": "concurrently -k -n WEBPACK,BACKEND,PUPPETEER \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:puppeteer\"",
"build": "cross-env NODE_ENV=production webpack --config src/config/webpack/webpack.prod.js",
"docker": "./docker_build.sh",
"run": ".venv/bin/python main.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingJsoftware/Invigo-Server.git"
},
"author": "Jared Gross",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCodingJsoftware/Invigo-Server/issues"
},
"homepage": "https://github.com/TheCodingJsoftware/Invigo-Server#readme"
}