Files
SlimeVR-Server/package.json
Ryan Butler 90144f13c8 fix: Child process termination, workspaces, gitignore, logger
* Now using cargo workspaces, means you can `cargo run` from toplevel.
* Command execution now is cwd independent.
+ Added pretty_env_logger which lets us leverage log crate for easy
  logging.
* Windows now uses the win32job crate to ensure that all child processes
  will properly terminate when the parent process does.
+ Added empty rustfmt.toml to ensure everyone uses default rustfmt
  settings.
* Gitignore now ignores more stuff.
2022-04-24 01:18:00 -04:00

66 lines
1.6 KiB
JSON

{
"name": "slimevr-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tauri-apps/api": "^1.0.0-rc.3",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"add": "^2.0.6",
"classnames": "^2.3.1",
"flatbuffers": "^2.0.6",
"math3d": "^0.2.2",
"quaternion": "^1.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.29.0",
"react-modal": "^3.14.4",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"slimevr-protocol": "file:../SolarXR-Protocol",
"typescript": "^4.6.3",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "cross-env BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tauri": "tauri"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tauri-apps/cli": "^1.0.0-rc.8",
"@types/math3d": "^0.2.3",
"@types/react-modal": "^3.13.1",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23"
}
}