2023-01-10 12:24:24 +01:00
|
|
|
{
|
|
|
|
"name": "@status-im/components",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"sideEffects": [
|
|
|
|
"*.css"
|
|
|
|
],
|
2023-03-14 13:48:09 +01:00
|
|
|
"#module": "./src/index.tsx",
|
|
|
|
"types": "./src/index.tsx",
|
2023-03-13 22:52:43 +01:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"module": "./dist/index.mjs",
|
2023-03-14 13:48:09 +01:00
|
|
|
"#types": "./dist/types/index.d.ts",
|
2023-01-10 12:24:24 +01:00
|
|
|
"files": [
|
|
|
|
"types",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2023-04-26 12:06:18 +02:00
|
|
|
"dev": "vite build --watch --mode development",
|
|
|
|
"build": "vite build",
|
2023-03-14 13:49:33 +01:00
|
|
|
"postbuild": "yarn build:types",
|
|
|
|
"build:types": "tsc --noEmit false --emitDeclarationOnly || true",
|
2023-03-13 21:48:42 +01:00
|
|
|
"lint": "eslint src",
|
|
|
|
"typecheck": "tsc",
|
2023-04-11 20:53:24 +02:00
|
|
|
"storybook": "node ./scripts/storybook.js",
|
2023-05-16 12:39:46 +02:00
|
|
|
"storybook:dev": "storybook dev -p 3001",
|
|
|
|
"storybook:build": "storybook build",
|
2023-05-03 14:25:17 +02:00
|
|
|
"clean": "rimraf node_modules dist .turbo storybook-static .tamagui"
|
2023-01-16 12:57:57 +01:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-04-11 20:52:18 +02:00
|
|
|
"react": "^18.2.0"
|
2023-01-10 12:24:24 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-04-05 16:31:35 +02:00
|
|
|
"@radix-ui/react-accordion": "^1.1.1",
|
2023-06-05 17:21:39 +01:00
|
|
|
"@radix-ui/react-checkbox": "^1.0.4",
|
2023-03-13 22:37:38 +01: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 14:41:56 +02:00
|
|
|
"@radix-ui/react-tabs": "^1.0.3",
|
2023-04-04 15:52:02 +02:00
|
|
|
"@radix-ui/react-toast": "^1.1.3",
|
2023-03-13 22:37:38 +01:00
|
|
|
"@radix-ui/react-tooltip": "^1.0.5",
|
2023-04-14 23:27:05 +02:00
|
|
|
"@status-im/colors": "*",
|
2023-04-25 12:02:58 +02:00
|
|
|
"@status-im/icons": "*",
|
2023-06-29 11:04:52 +01:00
|
|
|
"@tamagui/animations-css": "1.36.4",
|
|
|
|
"@tamagui/animations-react-native": "1.36.4",
|
|
|
|
"@tamagui/core": "1.36.4",
|
|
|
|
"@tamagui/font-inter": "1.36.4",
|
|
|
|
"@tamagui/react-native-media-driver": "1.36.4",
|
|
|
|
"@tamagui/shorthands": "1.36.4",
|
|
|
|
"@tamagui/theme-base": "1.36.4",
|
|
|
|
"@tamagui/web": "1.36.4",
|
2023-06-13 11:33:14 +01:00
|
|
|
"date-fns": "^2.30.0",
|
2023-04-05 16:31:35 +02:00
|
|
|
"expo-blur": "^12.2.2",
|
2023-03-30 13:40:10 +02:00
|
|
|
"expo-linear-gradient": "^12.1.2",
|
2023-06-13 11:33:14 +01:00
|
|
|
"react-day-picker": "^8.7.1",
|
2023-06-29 11:04:52 +01:00
|
|
|
"tamagui": "1.36.4",
|
2023-04-11 20:52:18 +02:00
|
|
|
"zustand": "^4.3.7"
|
2023-01-10 12:24:24 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-11 20:52:18 +02:00
|
|
|
"@storybook/addon-essentials": "7.0.2",
|
|
|
|
"@storybook/addon-interactions": "7.0.2",
|
|
|
|
"@storybook/addon-links": "7.0.2",
|
|
|
|
"@storybook/blocks": "7.0.2",
|
|
|
|
"@storybook/react": "7.0.2",
|
|
|
|
"@storybook/react-vite": "7.0.2",
|
|
|
|
"@storybook/testing-library": "^0.1.0",
|
2023-06-29 11:04:52 +01:00
|
|
|
"@tamagui/vite-plugin": "1.36.4",
|
2023-03-13 22:52:43 +01:00
|
|
|
"@vitejs/plugin-react-swc": "^3.2.0",
|
2023-06-21 12:35:48 +02:00
|
|
|
"@status-im/eslint-config": "*",
|
2023-01-10 12:24:24 +01:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
2023-03-13 16:44:40 +01:00
|
|
|
"react-native-svg": "^13.8.0",
|
2023-06-29 11:04:52 +01:00
|
|
|
"react-native-web": "^0.19.5",
|
2023-04-11 20:52:18 +02:00
|
|
|
"storybook": "7.0.2",
|
2023-01-23 14:03:38 +01:00
|
|
|
"storybook-addon-designs": "7.0.0-beta.2",
|
2023-04-11 20:52:18 +02:00
|
|
|
"storybook-dark-mode": "^3.0.0",
|
|
|
|
"vite": "^4.2.1"
|
2023-06-27 21:30:11 +01:00
|
|
|
},
|
2023-06-29 11:04:52 +01:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2023-06-27 21:30:11 +01:00
|
|
|
"lint-staged": {
|
|
|
|
"*.{ts,tsx,js,jsx,mjs}": [
|
|
|
|
"eslint",
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"*.{md,mdx,yml,yaml,json}": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
2023-01-10 12:24:24 +01:00
|
|
|
}
|
|
|
|
}
|