Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| { | |
| "scripts": { | |
| "serve": "webpack-dev-server", | |
| "build-debug": "cargo +nightly build --target wasm32-unknown-unknown && wasm-bindgen target/wasm32-unknown-unknown/debug/wasm_game_of_life.wasm --out-dir .", | |
| "build-release": "cargo +nightly build --release --target wasm32-unknown-unknown && wasm-bindgen target/wasm32-unknown-unknown/release/wasm_game_of_life.wasm --out-dir ." | |
| }, | |
| "devDependencies": { | |
| "webpack": "^4.0.1", | |
| "webpack-cli": "^2.0.10", | |
| "webpack-dev-server": "^3.1.0" | |
| } | |
| } |