ebf97ece9b
Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 4.13.2 to 5.2.1. - [Release notes](https://github.com/webpack/webpack-dev-server/releases) - [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-dev-server/compare/v4.13.2...v5.2.1) --- updated-dependencies: - dependency-name: webpack-dev-server dependency-version: 5.2.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "create-wasm-app",
|
|
"version": "0.1.0",
|
|
"description": "create an app to fetch data through the mixnet",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"create-wasm-app": ".bin/create-wasm-app.js"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --config webpack.config.js",
|
|
"build:wasm": "cd ../ && make wasm-build",
|
|
"start": "webpack-dev-server --port 8001"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
|
|
},
|
|
"keywords": [
|
|
"webassembly",
|
|
"wasm",
|
|
"rust",
|
|
"webpack"
|
|
],
|
|
"author": "Dave Hrycyszyn <futurechimp@users.noreply.github.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/nymtech/nym/issues"
|
|
},
|
|
"homepage": "https://nymtech.net/docs",
|
|
"devDependencies": {
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"hello-wasm-pack": "^0.1.0",
|
|
"webpack": "^5.98.0",
|
|
"webpack-cli": "^4.9.2",
|
|
"webpack-dev-server": "^5.2.1"
|
|
},
|
|
"dependencies": {
|
|
"@nymproject/mix-fetch-wasm": "file:../pkg",
|
|
"go-mix-conn": "file:../go-mix-conn/build"
|
|
}
|
|
}
|