monaco-react/playground/package.json
Suren Atoyan 1b91d20e37
create playground (#160)
* add playground app for monaco-react

* add .DS_Store file to npm/git ignore files

* fix rollup-plugin-terser named import

* use package 'concurrently' to concurrently run multiple scipts

* add development/playground section

* fix development/playground link

* adjust the playground coding styles

* set the first stable version of the playground
2021-01-12 15:05:30 +04:00

19 lines
400 B
JSON

{
"name": "playground",
"version": "1.0.0",
"scripts": {
"lib-build-dev": "cd .. && npm run build-dev",
"dev": "concurrently \"npm run lib-build-dev\" \"vite\"",
"build": "vite build"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"vite": "^2.0.0-beta.12"
}
}