12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@joystream/components",
- "version": "1.0.0",
- "description": "React Components for the Atlas Project",
- "homepage": "https://github.com/Joystream/atlas#readme",
- "license": "ISC",
- "main": "dist/index.cjs.js",
- "module": "dist/index.es.js",
- "types": "dist/types",
- "directories": {
- "src": "src",
- "test": "__tests__"
- },
- "files": [
- "src"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/Joystream/atlas.git"
- },
- "scripts": {
- "start": "rollup -wc",
- "dev": "yarn start",
- "index": "node scripts/build-index.js",
- "build": "rollup -c",
- "storybook": "start-storybook -p 6006",
- "build-storybook": "build-storybook",
- "now-build": "build-storybook",
- "test": "echo \"Error: run tests from root\" && exit 1"
- },
- "bugs": {
- "url": "https://github.com/Joystream/atlas/issues"
- },
- "dependencies": {
- "react-player": "^2.2.0",
- "react-spring": "^8.0.27"
- },
- "peerDependencies": {
- "@babel/runtime": "^7.10.2",
- "@emotion/core": "^10.0.28",
- "react": "^16.13.1"
- }
- }
|