File size: 3,536 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
{
"name": "react-spring--root",
"private": true,
"description": "Cross-platform animation engine for React",
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-spring.git"
},
"homepage": "https://github.com/pmndrs/react-spring#readme",
"keywords": [
"animated",
"animation",
"hooks",
"motion",
"react",
"react-native",
"spring",
"typescript",
"velocity"
],
"license": "MIT",
"author": "Paul Henschel",
"maintainers": [
"Josh Ellis (https://github.com/joshuaellis)"
],
"workspaces": {
"packages": [
"packages/*",
"targets/*",
"packages/parallax/@react-spring/parallax-demo",
"demo",
"docs"
]
},
"scripts": {
"build-ci": "turbo run build --filter=!@react-spring/docs",
"build": "turbo run build",
"changeset": "changeset",
"clean": "turbo run clean",
"dev": "turbo run dev --no-cache --parallel --continue",
"docs:dev": "yarn workspace @react-spring/docs dev",
"docs:build": "yarn workspace @react-spring/docs build",
"demo:dev": "yarn workspace @react-spring/demo dev",
"prettier:write": "prettier --write \"**/*.{ts,tsx,md}\"",
"prettier:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"package": "turbo run pack",
"postinstall": "remix setup node",
"prepare": "husky install",
"test": "yarn test:ts && yarn test:unit && yarn test:e2e",
"test:unit": "jest",
"test:cov": "jest --coverage",
"test:ts": "tsc --noEmit",
"test:e2e": "start-server-and-test 'yarn vite serve packages/parallax/test --host' http-get://localhost:3000 'yarn cypress run'",
"release": "yarn clean && yarn && yarn build && yarn test:ts && yarn test:unit && yarn changeset publish --no-git-tag",
"vers": "yarn changeset version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"devDependencies": {
"@changesets/cli": "2.27.11",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@react-three/fiber": "~9.1.2",
"@remix-run/dev": "2.15.2",
"@simonsmith/cypress-image-snapshot": "9.1.0",
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@testing-library/cypress": "10.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.14",
"@types/lodash.clamp": "4.0.9",
"@types/lodash.shuffle": "4.2.9",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/three": "0.172.0",
"cypress": "14.3.3",
"eslint": "8.57.1",
"flush-microtasks": "1.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"konva": "9.3.18",
"mock-raf": "npm:@react-spring/mock-raf@1.1.1",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"react": "^19",
"react-dom": "^19",
"react-konva": "^19",
"react-native": ">=0.78",
"react-zdog": "1.2.2",
"spec.ts": "1.1.3",
"start-server-and-test": "2.0.9",
"three": "0.172.0",
"tsup": "8.3.5",
"turbo": "2.3.3",
"typescript": "5.7.2",
"vite": "6.0.7",
"zdog": "1.1.3"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
},
"packageManager": "yarn@3.8.7"
}
|