mirror of
https://github.com/simonw/datasette-vega.git
synced 2026-09-11 19:14:11 +02:00
Work-around for "Module parse failed: Identifier directly after number" due to `const wait = 10_000;` in vega-embed: https://stackoverflow.com/a/67566183
23 lines
503 B
JSON
23 lines
503 B
JSON
{
|
|
"name": "datasette-vega",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "^4.0.3",
|
|
"vega-embed": "^6.20.5",
|
|
"vega-lib": "^4.4.0"
|
|
},
|
|
"scripts": {
|
|
"start": "REACT_APP_STAGE=dev react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
]
|
|
}
|