Files
Jinho Jang 89df4a5048 Migrate community curation dapp into status-web monorepo (#1077)
* feat: migrate community dapp

* fix: change server protocol from https to http in webpack config

* fix: update build script in package.json and add output directory to turbo.json

* fix: update CI workflow to initialize git submodules recursively and add Foundry installation step

* chore: change from community to community-dapp

* feat: add global type declarations for wallet and API integration

* fix: correct syntax for not-first-child selector in Card component

* fix(wallet): use type-safe globalThis cast instead of direct property assignment

* fix(community-dapp): fix eslint FlatCompat config and include test files in tsconfig

* fix(ci): fix forge test args and disable broken community-dapp tests

* fix(community-dapp): resolve @libp2p/interface to v2.10.4 for webpack build

* fix: add @libp2p/interface as missing dependency for @waku packages via packageExtensions

* fix: address PR review feedback

* fix(wallet): restore type-safe globalThis cast for CI build

* fix: commit ABI artifacts and add vercel.json for SPA routing

* fix(community-dapp): add 404.html for SPA routing on Vercel

* fix(community-dapp): simplify vercel.json to rewrites only

* fix(community-dapp): update vercel.json with build and output configurations

* fix: add Foundry dependencies to .gitignore
2026-03-31 23:27:42 +09:00

110 lines
3.7 KiB
JSON

{
"name": "@status-im/community-dapp",
"version": "0.0.1",
"description": "Community directory curator dApp for Status",
"private": true,
"main": "index.js",
"repository": {
"url": "https://github.com/status-im/status-web.git",
"directory": "apps/community",
"type": "git"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.17.0"
},
"scripts": {
"predev": "pnpm --filter @status-im/community-contracts run build",
"generate:proto": "protons src/helpers/waku.proto --output src/helpers",
"dev": "pnpm run generate:proto && NODE_OPTIONS=--openssl-legacy-provider webpack serve --mode=development",
"prebuild": "pnpm --filter @status-im/community-contracts run build",
"build": "pnpm run generate:proto && NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production",
"test": "echo 'Tests disabled: @waku/utils@0.0.27 has incompatible @libp2p/interface dependency in monorepo context'",
"lint": "eslint './{src,test}/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './{src,test}/**/*.{ts,tsx}'",
"clean": "rimraf dist node_modules .turbo"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@libp2p/bootstrap": "^9.0.10",
"@libp2p/interface": "^0.1.6",
"@status-im/community-contracts": "workspace:*",
"@status-im/js": "workspace:*",
"@usedapp/core": "^1.2.8",
"@waku/core": "^0.0.40",
"@waku/sdk": "^0.0.36",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eth-sig-util": "^3.0.1",
"ethereum-cryptography": "^2.0.0",
"ethers": "5.4.1",
"humanize-duration": "^3.27.0",
"lodash": "^4.17.21",
"process": "^0.11.10",
"protons-runtime": "^5.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.0",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "8.57.1",
"@testing-library/react-hooks": "^7.0.0",
"@types/chai": "^4.2.18",
"@types/humanize-duration": "^3.25.0",
"@types/lodash": "^4.14.170",
"@types/mocha": "^10.0.1",
"@types/node": "^22.0.0",
"@types/react": "^17.0.8",
"@types/react-countup": "^4.3.1",
"@types/react-dom": "^17.0.6",
"@types/react-router": "^5.1.14",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@waku/interfaces": "^0.0.34",
"babel-loader": "^9.2.0",
"babel-plugin-styled-components": "^2.1.4",
"babel-preset-minify": "^0.5.1",
"chai": "^4.3.4",
"core-js": "^3.26.1",
"eslint": "^8.57.0",
"eslint-plugin-hooks": "^0.2.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.3.1",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.7.0",
"prettier": "^3.0.0",
"protobufjs": "^7.0.0",
"protons": "^7.7.0",
"react-countup": "^4.4.0",
"rimraf": "^4.3.1",
"source-map-loader": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}