mirror of
https://github.com/status-im/dappconnect-voting-sdk.git
synced 2025-02-20 14:38:15 +00:00
60 lines
2.0 KiB
JSON
60 lines
2.0 KiB
JSON
{
|
|
"name": "@waku/mainnet-poll-sdk-example",
|
|
"version": "0.2.0",
|
|
"main": "index.js",
|
|
"license": "MIT OR Apache-2.0",
|
|
"scripts": {
|
|
"clean:all": "yarn clean && rimraf node_modules/",
|
|
"clean": "rimraf dist/",
|
|
"build": "rm -rf dist && webpack --mode=production --env ENV=production",
|
|
"start": "webpack serve --mode=development --env ENV=development --https --port 8181",
|
|
"test": "mocha -r jsdom-global/register",
|
|
"lint": "yarn lint:prettier --check && yarn lint:eslint",
|
|
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
|
|
"lint:eslint": "eslint './{src,test}/**/*.{ts,tsx}'",
|
|
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
|
|
},
|
|
"dependencies": {
|
|
"@usedapp/core": "^0.4.7",
|
|
"@waku/poll-sdk-react-components": "^0.2.0",
|
|
"@waku/poll-sdk-react-hooks": "^0.2.0",
|
|
"@waku/vote-poll-sdk-react-components": "^0.2.0",
|
|
"crypto-browserify": "^3.12.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router-dom": "^5.2.0",
|
|
"stream-browserify": "^3.0.0",
|
|
"styled-components": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.21",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/react": "^17.0.16",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@types/react-router": "^5.1.17",
|
|
"@types/react-router-dom": "^5.3.2",
|
|
"@types/styled-components": "^5.1.12",
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"assert": "^2.0.0",
|
|
"chai": "^4.3.4",
|
|
"esbuild-loader": "^2.18.0",
|
|
"eslint": "^8.6.0",
|
|
"file-loader": "^6.2.0",
|
|
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"jsdom": "^16.7.0",
|
|
"jsdom-global": "^3.0.2",
|
|
"mocha": "^9.0.3",
|
|
"npm-watch": "^0.11.0",
|
|
"prettier": "^2.5.1",
|
|
"process": "^0.11.10",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^10.1.0",
|
|
"typescript": "^4.5.4",
|
|
"webpack": "5.48.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-dev-server": "^4.7.1"
|
|
}
|
|
}
|