64 lines
2.1 KiB
JSON
64 lines
2.1 KiB
JSON
{
|
|
"name": "@waku/vote-sdk-example",
|
|
"repository": "git@github.com:status-im/wakuconnect-vote-poll-sdk.git",
|
|
"version": "0.1.0",
|
|
"main": "dist/cjs/src/index.js",
|
|
"module": "dist/esm/src/index.js",
|
|
"types": "dist/esm/src/index.d.ts",
|
|
"license": "MIT OR Apache-2.0",
|
|
"watch": {
|
|
"build": {
|
|
"patterns": [
|
|
"src"
|
|
],
|
|
"extensions": "ts,tsx",
|
|
"runOnChangeOnly": false
|
|
}
|
|
},
|
|
"scripts": {
|
|
"watch": "yarn npm-watch",
|
|
"clean:all": "yarn clean && rimraf node_modules/",
|
|
"clean": "rimraf dist/",
|
|
"copy-assets": "yarn copy-files:cjs && yarn copy-files:esm",
|
|
"copy-files:cjs": "copyfiles -u 1 src/**/*.svg src/**/*.png dist/cjs/src",
|
|
"copy-files:esm": "copyfiles -u 1 src/**/*.svg src/**/*.png dist/esm/src",
|
|
"build": "yarn build:all && yarn copy-assets",
|
|
"build:all": "yarn run build:esm && yarn run build:cjs",
|
|
"build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
|
|
"build:cjs": "tsc --outDir dist/cjs",
|
|
"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": {
|
|
"@waku/vote-poll-sdk-core": "^0.1.0",
|
|
"@waku/vote-sdk-react-components": "^0.1.0",
|
|
"@waku/vote-sdk-react-hooks": "^0.1.0",
|
|
"@waku/vote-poll-sdk-react-components": "^0.1.0",
|
|
"@usedapp/core": "^0.4.7",
|
|
"ethers": "^5.4.4",
|
|
"react": "^17.0.2",
|
|
"styled-components": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.21",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/react": "^17.0.16",
|
|
"@types/styled-components": "^5.1.12",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.0",
|
|
"@typescript-eslint/parser": "^4.29.0",
|
|
"chai": "^4.3.4",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^7.32.0",
|
|
"jsdom": "^16.7.0",
|
|
"jsdom-global": "^3.0.2",
|
|
"mocha": "^9.0.3",
|
|
"npm-watch": "^0.11.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^10.1.0",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|