-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
120 lines (120 loc) · 3.51 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
{
"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",
"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.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@react-three/fiber": "8.17.10",
"@remix-run/dev": "2.13.1",
"@simonsmith/cypress-image-snapshot": "9.1.0",
"@swc/core": "1.7.35",
"@swc/jest": "0.2.36",
"@testing-library/cypress": "10.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@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": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/react-lazyload": "3.2.3",
"@types/react-native": "0.73.0",
"@types/styled-components": "5.1.34",
"@types/three": "0.169.0",
"cypress": "13.15.0",
"eslint": "8.57.1",
"flush-microtasks": "1.0.1",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"konva": "9.3.15",
"mock-raf": "npm:@react-spring/mock-raf@1.1.1",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-konva": "18.2.10",
"react-native": "0.75.4",
"react-zdog": "1.2.2",
"spec.ts": "1.1.3",
"start-server-and-test": "2.0.8",
"three": "0.169.0",
"tsup": "8.3.0",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vite": "5.4.8",
"zdog": "1.1.3"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
},
"packageManager": "yarn@3.8.5"
}