webamp/experiments/modern/package.json
Jordan Eldredge 256e24d83d Move the maki-interpreter experiment into the modern experiment
We're getting to a place where it's going to be feasible to test the
Maki interpreter in the browser, so it makes sense to merge the two
experiments.
2019-11-30 13:42:53 -08:00

36 lines
977 B
JSON

{
"name": "modern",
"version": "0.1.0",
"private": true,
"dependencies": {
"jszip": "^3.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"xml-js": "^1.6.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --no-watchman",
"eject": "react-scripts eject",
"decompile": "cd src/maki-interpreter/reference/maki_decompiler_1.1 && perl mdc.pl ../../fixtures/standardframe.maki",
"interpret": "node ./src/maki-interpreter/cli.js ./fixtures/standardframe.maki",
"debug": "node --inspect-brk ./src/maki-interpreter/cli.js ./fixtures/standardframe.maki"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}