dualsense-ts
Version:
A natural interface for your DualSense controller, with Typescript
76 lines (75 loc) • 2.25 kB
JSON
{
"name": "dualsense-ts-example-app",
"version": "0.0.0",
"description": "Demonstrates controller setup and interaction in React",
"author": "Nate Dube <nate@ndube.com>",
"license": "GPL-3.0",
"private": true,
"homepage": "dualsense-ts",
"dependencies": {
"@blueprintjs/core": "5",
"@blueprintjs/icons": "^4.8.0",
"@blueprintjs/popover2": "^1.7.4",
"@blueprintjs/select": "^4.8.4",
"dualsense-ts": "link:..",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-zdog": "^1.0.11",
"styled-components": "^5.3.6",
"web-vitals": "^2.1.0",
"zdog": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-private-property-in-object": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@testing-library/dom": ">=7.21.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/w3c-web-serial": "^1.0.3",
"@types/zdog": "^1.1.2",
"barrelsby": "^2.5.1",
"prettier": "^2.7.1",
"react-is": ">=16.8.0",
"ts-jest": "^27.1.3",
"typescript": "^4.4.2"
},
"scripts": {
"prestart": "yarn barrels",
"start": "react-scripts start",
"prebuild": "yarn barrels",
"build": "react-scripts build",
"lint": "eslint src",
"test": "jest --forceExit",
"coverage": "jest --coverage --forceExit",
"eject": "react-scripts eject",
"barrels": "barrelsby --directory=src --delete --location=below --name='index.tsx' --exclude='.d.ts' --exclude='spec.ts$' --input-type=module"
},
"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"
]
}
}