2022-02-23 14:03:14 +00:00
|
|
|
{
|
|
|
|
"name": "@status-im/react",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"license": "MIT OR Apache-2.0",
|
|
|
|
"homepage": "https://github.com/status-im/status-web",
|
|
|
|
"repository": {
|
|
|
|
"url": "https://github.com/status-im/status-web.git",
|
|
|
|
"directory": "packages/status-react",
|
|
|
|
"type": "git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/status-im/status-web/issues"
|
|
|
|
},
|
2022-03-03 15:20:23 +00:00
|
|
|
"source": "src/index.tsx",
|
2022-02-24 15:44:09 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/index.esm.js",
|
|
|
|
"types": "dist/types.d.ts",
|
2022-02-23 14:03:14 +00:00
|
|
|
"scripts": {
|
2022-02-24 15:44:09 +00:00
|
|
|
"prebuild": "rm -rf dist",
|
|
|
|
"build": "parcel build",
|
2022-02-23 15:16:42 +00:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
2022-02-24 23:02:30 +00:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"lint": "eslint src",
|
2022-04-18 14:54:40 +00:00
|
|
|
"format": "prettier --write src",
|
|
|
|
"clean": "rm -rf node_modules && rm -rf dist"
|
2022-02-23 14:03:14 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-24 15:44:09 +00:00
|
|
|
"@hcaptcha/react-hcaptcha": "^1.0.0",
|
2022-03-15 12:47:17 +00:00
|
|
|
"@radix-ui/react-accessible-icon": "^0.1.4",
|
|
|
|
"@radix-ui/react-alert-dialog": "^0.1.7",
|
2022-04-11 19:29:58 +00:00
|
|
|
"@radix-ui/react-checkbox": "^0.1.5",
|
2022-03-15 12:47:17 +00:00
|
|
|
"@radix-ui/react-collapsible": "^0.1.6",
|
2022-04-11 19:04:05 +00:00
|
|
|
"@radix-ui/react-compose-refs": "^0.1.0",
|
2022-03-15 12:47:17 +00:00
|
|
|
"@radix-ui/react-context-menu": "^0.1.6",
|
|
|
|
"@radix-ui/react-dialog": "^0.1.7",
|
|
|
|
"@radix-ui/react-dropdown-menu": "^0.1.6",
|
2022-04-11 19:29:58 +00:00
|
|
|
"@radix-ui/react-label": "^0.1.5",
|
2022-03-31 13:15:24 +00:00
|
|
|
"@radix-ui/react-popover": "^0.1.6",
|
2022-03-18 13:31:56 +00:00
|
|
|
"@radix-ui/react-separator": "^0.1.4",
|
2022-04-11 19:04:05 +00:00
|
|
|
"@radix-ui/react-toggle-group": "^0.1.5",
|
2022-03-15 12:47:17 +00:00
|
|
|
"@radix-ui/react-tooltip": "^0.1.7",
|
|
|
|
"@radix-ui/react-visually-hidden": "^0.1.4",
|
2022-02-28 12:40:33 +00:00
|
|
|
"@status-im/core": "^0.0.0",
|
2022-03-15 12:47:17 +00:00
|
|
|
"@stitches/react": "^1.2.7",
|
2022-02-23 14:03:14 +00:00
|
|
|
"emoji-mart": "^3.0.1",
|
|
|
|
"html-entities": "^2.3.2",
|
|
|
|
"js-sha3": "^0.8.0",
|
2022-05-19 13:37:46 +00:00
|
|
|
"js-waku": "^0.23.0",
|
2022-04-11 19:03:41 +00:00
|
|
|
"qrcode.react": "^3.0.1",
|
2022-02-23 14:03:14 +00:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-is": "^17.0.2",
|
2022-04-11 19:04:05 +00:00
|
|
|
"react-router-dom": "^6.3.0",
|
2022-03-31 13:15:24 +00:00
|
|
|
"styled-components": "^5.3.1",
|
2022-03-15 12:47:17 +00:00
|
|
|
"tinykeys": "^1.4.0"
|
2022-02-24 23:02:30 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/emoji-mart": "^3.0.6",
|
|
|
|
"@types/hcaptcha__react-hcaptcha": "^0.1.5",
|
|
|
|
"@types/node": "^16.9.6",
|
|
|
|
"@types/react": "^17.0.16",
|
|
|
|
"@types/styled-components": "^5.1.12"
|
2022-02-24 23:08:29 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^16.8.0 || ^17.0.0",
|
|
|
|
"react-dom": "^16.8.0 || ^17.0.0"
|
2022-02-23 14:03:14 +00:00
|
|
|
}
|
|
|
|
}
|