2023-01-10 11:24:24 +00:00
|
|
|
{
|
|
|
|
"name": "@status-im/components",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"sideEffects": [
|
|
|
|
"*.css"
|
|
|
|
],
|
|
|
|
"private": true,
|
2023-03-14 12:48:09 +00:00
|
|
|
"#module": "./src/index.tsx",
|
|
|
|
"types": "./src/index.tsx",
|
2023-03-13 21:52:43 +00:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"module": "./dist/index.mjs",
|
2023-03-14 12:48:09 +00:00
|
|
|
"#types": "./dist/types/index.d.ts",
|
2023-01-10 11:24:24 +00:00
|
|
|
"files": [
|
|
|
|
"types",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2023-03-13 21:52:43 +00:00
|
|
|
"dev": "TAMAGUI_TARGET='web' vite build --watch --mode development",
|
|
|
|
"build": "TAMAGUI_TARGET='web' vite build",
|
2023-03-14 12:49:33 +00:00
|
|
|
"postbuild": "yarn build:types",
|
|
|
|
"build:types": "tsc --noEmit false --emitDeclarationOnly || true",
|
2023-03-13 20:48:42 +00:00
|
|
|
"lint": "eslint src",
|
|
|
|
"typecheck": "tsc",
|
2023-01-16 11:57:57 +00:00
|
|
|
"storybook": "TAMAGUI_TARGET='web' storybook dev -p 3001",
|
2023-03-13 20:48:42 +00:00
|
|
|
"storybook:build": "TAMAGUI_TARGET='web' storybook build",
|
|
|
|
"clean": "rimraf node_modules dist .turbo storybook-static"
|
2023-01-16 11:57:57 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react-native-web": "^0.18.0"
|
2023-01-10 11:24:24 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-03-13 21:37:38 +00:00
|
|
|
"@radix-ui/react-dialog": "^1.0.3",
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.0.4",
|
|
|
|
"@radix-ui/react-popover": "^1.0.5",
|
2023-03-30 12:41:56 +00:00
|
|
|
"@radix-ui/react-tabs": "^1.0.3",
|
2023-04-04 13:52:02 +00:00
|
|
|
"@radix-ui/react-toast": "^1.1.3",
|
2023-03-13 21:37:38 +00:00
|
|
|
"@radix-ui/react-tooltip": "^1.0.5",
|
2023-01-23 13:36:39 +00:00
|
|
|
"@status-im/icons": "*",
|
2023-03-13 15:44:40 +00:00
|
|
|
"@tamagui/animations-css": "1.7.7",
|
|
|
|
"@tamagui/animations-react-native": "1.7.7",
|
|
|
|
"@tamagui/core": "1.7.7",
|
|
|
|
"@tamagui/font-inter": "1.7.7",
|
|
|
|
"@tamagui/react-native-media-driver": "1.7.7",
|
|
|
|
"@tamagui/shorthands": "1.7.7",
|
|
|
|
"@tamagui/theme-base": "1.7.7",
|
2023-02-28 14:01:04 +00:00
|
|
|
"expo-blur": "~12.0.1",
|
2023-03-30 11:40:10 +00:00
|
|
|
"expo-linear-gradient": "^12.1.2",
|
2023-03-13 15:44:40 +00:00
|
|
|
"tamagui": "1.7.7",
|
2023-03-13 21:37:38 +00:00
|
|
|
"zustand": "^4.3.6"
|
2023-01-10 11:24:24 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-23 13:03:38 +00:00
|
|
|
"@storybook/addon-essentials": "7.0.0-beta.21",
|
|
|
|
"@storybook/addon-interactions": "7.0.0-beta.21",
|
|
|
|
"@storybook/addon-links": "7.0.0-beta.21",
|
|
|
|
"@storybook/blocks": "7.0.0-beta.21",
|
|
|
|
"@storybook/react": "7.0.0-beta.21",
|
|
|
|
"@storybook/react-vite": "7.0.0-beta.21",
|
2023-01-10 11:24:24 +00:00
|
|
|
"@storybook/testing-library": "^0.0.13",
|
2023-03-13 15:44:40 +00:00
|
|
|
"@tamagui/vite-plugin": "1.7.7",
|
2023-03-13 21:52:43 +00:00
|
|
|
"@vitejs/plugin-react-swc": "^3.2.0",
|
2023-01-10 11:24:24 +00:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-03-13 15:44:40 +00:00
|
|
|
"react-native-svg": "^13.8.0",
|
|
|
|
"react-native-web": "^0.18.12",
|
2023-01-23 13:03:38 +00:00
|
|
|
"storybook": "7.0.0-beta.21",
|
|
|
|
"storybook-addon-designs": "7.0.0-beta.2",
|
2023-03-13 21:37:38 +00:00
|
|
|
"storybook-dark-mode": "^2.1.1",
|
|
|
|
"vite": "^4.1.4"
|
2023-01-10 11:24:24 +00:00
|
|
|
}
|
|
|
|
}
|