mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2026-01-27 11:01:23 +01:00
Modify existing console view plugin to recreate our own console view. Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
|
"name": "yocto-console-view",
|
|
"private": true,
|
|
"type": "module",
|
|
"module": "yocto_console_view/static/scripts.js",
|
|
"style": "yocto_console_view/static/styles.css",
|
|
"scripts": {
|
|
"start": "vite",
|
|
"build": "vite build",
|
|
"build-dev": "vite build -m development",
|
|
"test": "vitest run",
|
|
"test-watch": "vitest --watch"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app"
|
|
]
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"react-app"
|
|
]
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "~1.7.7",
|
|
"mobx": "^6.6.1",
|
|
"mobx-react": "^9.1.1",
|
|
"moment": "^2.29.4",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "~4.3.1",
|
|
"axios": "~1.7.7",
|
|
"axios-mock-adapter": "~2.0.0",
|
|
"buildbot-data-js": "link:../data-module",
|
|
"buildbot-plugin-support": "link:../plugin_support",
|
|
"buildbot-ui": "link:../ui",
|
|
"jsdom": "^25.0.0",
|
|
"mobx": "^6.6.1",
|
|
"mobx-react": "^9.1.1",
|
|
"moment": "^2.29.4",
|
|
"react": "^18.2.0",
|
|
"react-app-polyfill": "~3.0.0",
|
|
"react-bootstrap": "^1.6.5",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.3.0",
|
|
"sass": "^1.56.0",
|
|
"vite": "~5.4.3",
|
|
"vitest": "~2.0.5"
|
|
},
|
|
"license": "GPL-2.0",
|
|
"dependencies": {
|
|
"react-icons": "^5.3.0"
|
|
}
|
|
}
|