forked from pmndrs/react-spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.68 KB
/
package.json
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": "pmndrs/react-spring",
"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/doc",
"build": "turbo run build",
"changeset": "changeset",
"clean": "turbo run clean && rm -rf node_modules",
"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.26.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@react-three/fiber": "^8.11.9",
"@remix-run/dev": "patch:@remix-run/dev@npm%3A1.15.0#./.yarn/patches/@remix-run-dev-npm-1.15.0-33b55fa3ee.patch",
"@remix-run/serve": "^1.15.0",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/lodash.clamp": "^4.0.7",
"@types/lodash.shuffle": "^4.2.7",
"@types/mdx-js__react": "^1.5.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-lazyload": "^3.2.0",
"@types/react-native": "^0.71.3",
"@types/styled-components": "^5.1.26",
"@types/three": "^0.149.0",
"cypress": "^9.7.0",
"cypress-image-snapshot": "^4.0.1",
"eslint": "^8.36.0",
"flush-microtasks": "^1.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"konva": "^8.4.2",
"mock-raf": "npm:@react-spring/[email protected]",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.5",
"react-native": "^0.71.3",
"react-zdog": "^1.0.11",
"spec.ts": "^1.1.3",
"start-server-and-test": "^2.0.0",
"three": "^0.150.1",
"tsup": "^6.6.3",
"turbo": "^1.8.3",
"typescript": "4.9.5",
"vite": "^4.1.4",
"zdog": "^1.1.3"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
},
"packageManager": "[email protected]"
}