luma.gl/examples/glfx/package.json

23 lines
695 B
JSON

{
"description": "luma.gl port of the glfx demo application",
"license": "MIT",
"contributors": [
"Evan Wallace",
"David McArthur <daviestar@gmail.com>",
"Ib Green <ib@uber.com>"
],
"scripts": {
"start": "yarn build-lib && open index.html",
"build": "mkdir -p dist/lib dist/es && yarn build-dev && yarn build-prod",
"build-dev": "webpack",
"build-prod": "webpack --env minified",
"build-lib": "mkdir -p dist && (cd ../../modules/script && yarn build-dev && cp dist/lumagl.js ../../examples/glfx/dist)"
},
"devDependencies": {
"babel-loader": "^8.0.0",
"cross-env": "^5.0.5",
"webpack": "^4.3.0",
"webpack-dev-server": "^3.1.1"
}
}