rxviz/package.json
Raziel 8401f2b947
Fixed Vercel CI (#26)
* Fixed Vercel CI

* Next.js updated from 3.0.0-beta9 to 9.5.1

* Removed deprecated default prefetch attribute

* Fixed _error.js warning

* Moved deprecated static/ directory to public/

* Fixed missing return on the error404 component

* Fixed Link component used for an external URL

* Feedback page updated to a function component with useEffect

* Editor component updated to use global jsx styles

* CodeMirror updated from 5.26.0 to 5.56.0

* Client-side default example 'redirect' on the root path

* Update feedback.js

* Update feedback.js

Co-authored-by: Misha Moroshko <michael.moroshko@gmail.com>
2020-08-08 12:57:33 +10:00

80 lines
2.0 KiB
JSON

{
"name": "RxViz",
"version": "1.0.0",
"description": "Animated playground for Rx Observables",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/rxviz.git"
},
"author": "Misha Moroshko <michael.moroshko@gmail.com>",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "node server.js",
"build": "next build",
"lint": "eslint components css lib pages ./*.js",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --single-quote --write \"components/**/*.js\" \"css/**/*.js\" \"lib/**/*.js\" \"pages/**/*.js\" \"./*.js\"",
"precommit": "lint-staged"
},
"dependencies": {
"codemirror": "^5.56.0",
"color": "^1.0.3",
"copy-to-clipboard": "^3.0.6",
"d3-path": "^1.0.5",
"d3-scale": "^1.0.6",
"express": "^4.15.3",
"isomorphic-unfetch": "^1.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.6",
"lodash.isundefined": "^3.0.1",
"lodash.omit": "^4.5.0",
"lodash.set": "^4.3.2",
"next": "^9.5.1",
"prop-types": "^15.5.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^2.2.0",
"react-measure": "^2.0.2",
"react-numeric-input": "moroshko/react-numeric-input",
"rxjs": "^6.2.1",
"tinyqueue": "^1.2.2"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"lodash.sortby": "^4.7.0",
"lolex": "^1.6.0",
"prettier": "^1.13.7"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run lint",
"npm test",
"git add"
]
},
"keywords": [
"rx",
"rxjs",
"reactive",
"observable",
"stream",
"visualizer",
"visualization",
"svg",
"animation",
"react",
"react-component"
],
"license": "MIT"
}