Files
spacedrive/packages/client/package.json
Jamie Pine a40c4503f0 holy mother of hot reload
Co-authored-by: Brendan Allan <brendonovich@outlook.com>
2022-04-20 01:15:28 -07:00

38 lines
770 B
JSON

{
"name": "@sd/client",
"version": "0.0.0",
"private": true,
"main": "./src/index.ts",
"files": [
"dist/**"
],
"scripts": {
"test": "jest",
"dev": "tsc -w",
"build": "tsc",
"lint": "TIMING=1 eslint src --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"scripts": "*",
"tsconfig": "*",
"typescript": "^4.6.3",
"react": "^18.0.0",
"react-query": "^3.34.19"
},
"jest": {
"preset": "scripts/jest/node"
},
"dependencies": {
"@sd/config": "workspace:*",
"@sd/core": "workspace:*",
"eventemitter3": "^4.0.7",
"immer": "^9.0.12",
"zustand": "^3.7.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-query": "^3.34.19"
}
}