chore(react-json-tree): add scripts to example

This commit is contained in:
Nathan Bierema 2020-08-27 22:31:14 -04:00
parent 2faa16319b
commit 36994592b6

View File

@ -13,7 +13,11 @@
},
"scripts": {
"start": "webpack-dev-server --open",
"stats": "NODE_ENV=production webpack --json > dist/stats.json"
"stats": "NODE_ENV=production webpack --json > dist/stats.json",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",