forked from pmndrs/react-spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.89 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
{
"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/*",
"demo"
]
},
"preconstruct": {
"packages": [
"packages/*",
"targets/*",
"!packages/types"
]
},
"scripts": {
"changeset:add": "changeset add",
"postinstall": "patch-package && preconstruct dev",
"build": "preconstruct build",
"watch": "preconstruct watch",
"dev": "preconstruct dev",
"demo:dev": "yarn workspace demo dev",
"test:unit": "jest",
"test:cov": "jest --coverage",
"test:ts": "tsc --noEmit",
"test:e2e": "start-server-and-test 'yarn workspace @react-spring/parallax dev' http-get://localhost:3000 'yarn cypress run'",
"test": "yarn test:ts && yarn test:unit && yarn test:e2e",
"release": "yarn test:ts && yarn test:cov && yarn build && yarn changeset publish",
"vers": "yarn changeset version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-git": "^0.1.7",
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@preconstruct/cli": "^2.0.6",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"cypress": "^7.7.0",
"cypress-plugin-snapshots": "^1.4.4",
"flush-microtasks": "^1.0.1",
"husky": "1.3.1",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.3.1",
"mock-raf": "npm:@react-spring/mock-raf",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"pretty-quick": "1.10.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"spec.ts": "^1.1.3",
"start-server-and-test": "^1.12.6",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
}
}