basic build process

This commit is contained in:
2025-09-16 21:52:33 -04:00
commit 49d36c9c5f
7 changed files with 2217 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "editor-playground",
"version": "0.0.1",
"repository": "git@git.yetaga.in:alazyreader/editor-playground.git",
"author": "David Ashby <delta.mu.alpha@gmail.com>",
"scripts": {
"build": "yarn run webpack"
},
"license": "MIT",
"private": true,
"dependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@monaco-editor/react": "^4.7.0-rc.0",
"babel-loader": "^10.0.0",
"monaco-editor": "0.53.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
}
}