-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.13 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
116
117
118
119
120
121
122
{
"name": "btdashboard",
"version": "1.0.0",
"description": "Bert's Dashboard",
"source": "src/index.html",
"browserslist": "> 0.25%",
"homepage": "/",
"scripts": {
"build": "run-script-os",
"build:installer": "bash -c './setup.sh build release --no-bump'",
"build:macos": "yarn clean:default && yarn compile:ui:prod",
"build:windows": "yarn clean:windows && yarn compile:ui:prod",
"build:linux": "yarn clean:default && yarn compile:ui:prod",
"clean": "run-script-os",
"clean:default": "yarn rimraf dist btdashboard.gui build .parcel-cache 2>/dev/null;",
"clean:windows": "if exist dist yarn rimraf dist & if exist build yarn rimraf build & if exist btdashboard.gui yarn rimraf btdashboard.gui & if exist .parcel-cache yarn rimraf .parcel-cache",
"compile:ui:dev": "yarn parcel build src/index.html --no-optimize --no-scope-hoist --dist-dir btdashboard.gui",
"compile:ui:prod": "yarn parcel build src/index.html --no-scope-hoist --dist-dir btdashboard.gui --public-url ./",
"deploy": "run-script-os",
"deploy:darwin": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d btdashboard.gui",
"deploy:linux": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d btdashboard.gui",
"deploy:windows": "yarn rimraf node_modules/.cache/gh-pages && yarn gh-pages -d btdashboard.gui",
"start:api": "python btdashboard/app.py --debug --api-only -aio",
"start:dev:ui": "yarn parcel src/index.html",
"start:prod": "btdashboard",
"predeploy": "yarn compile:ui:prod"
},
"targets": {
"modern": {
"includeNodeModules": true,
"engines": {
"browsers": "Chrome 80"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/berttejeda/bert.dashboard.git"
},
"keywords": [
"flask",
"javascript",
"parcel",
"python",
"react"
],
"author": "Bert Tejeda",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/berttejeda/bert.dashboard/issues"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.2",
"@parcel/compressor-brotli": "^2.6.0",
"@parcel/compressor-gzip": "^2.6.0",
"@parcel/transformer-postcss": "^2.8.1",
"@parcel/transformer-sass": "^2.6.0",
"@tailwindcss/forms": "^0.5.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"buffer": "^6.0.3",
"chart.js": "^3.8.0",
"chartjs-adapter-moment": "^1.0.0",
"command": "^0.0.5",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"gh-pages": "^4.0.0",
"iframe-resizer-react": "^1.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"process": "^0.11.10",
"react": "^18.2.0",
"react-bootstrap": "^1.6.1",
"react-dom": "^18.2.0",
"react-flatpickr": "^3.10.13",
"react-hot-loader": "^4.13.0",
"react-loading": "^2.0.3",
"react-redux": "^7.2.2",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"react-router-redux": "^4.0.8",
"react-scripts": "4.0.0",
"react-sliding-pane": "^7.0.0",
"react-use-error-boundary": "^2.0.1",
"react-use-websocket": "^2.9.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"rsuite": "^5.2.1",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"spectacle": "spectacle-react-markdown-slides/packages/spectacle",
"tocbot": "^4.13.5",
"xterm": "^4.5.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.4.0",
"xterm-for-react-18": "^1.0.28"
},
"devDependencies": {
"@parcel/config-default": "^2.6.0",
"@parcel/plugin": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.6.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"buffer": "^6.0.3",
"http-proxy-middleware": "^2.0.6",
"parcel": "^2.6.0",
"parcel-resolver-ts-base-url": "^1.3.1",
"postcss": "^8.4.14",
"rimraf": "^3.0.2",
"run-script-os": "1.0.7",
"sass": "1.25.0",
"tailwindcss": "^3.1.6",
"typescript": "^3.7.5",
"vite": "^4.1.1"
}
}