mirror of
https://github.com/suren-atoyan/monaco-react.git
synced 2026-01-18 15:54:45 +00:00
* 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
19 lines
400 B
JSON
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"
|
|
}
|
|
}
|