123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "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": "concurrently \"yarn start\" \"yarn storybook\" ",
- "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": {
- "@emotion/core": "^10.0.28",
- "react": "^16.13.1",
- "react-dom": "^16.13.1"
- }
- }
|