fixed some bugs, and updated dev dashboard useffect"

This commit is contained in:
Sriram Hariharan
2023-03-03 18:58:19 -06:00
parent 57d704b759
commit 723caca417
9 changed files with 85 additions and 26 deletions

View File

@@ -6,14 +6,14 @@
"homepage": "sriramhariharan.com",
"type": "module",
"scripts": {
"start": "tsx webpack/development.ts",
"build": "tsx webpack/production.ts",
"start": "NODE_ENV=development tsx webpack/development.ts",
"build": "NODE_ENV=production tsx webpack/production.ts",
"release": "tsx webpack/release.ts",
"devtools": "react-devtools",
"lint": "eslint ./ --ext .ts,.tsx"
},
"dependencies": {
"chrome-extension-toolkit": "^0.0.21",
"chrome-extension-toolkit": "^0.0.22",
"clean-webpack-plugin": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
@@ -75,4 +75,4 @@
"webpack-build-notifier": "^2.3.0",
"webpack-dev-server": "^4.11.1"
}
}
}