forked from discord/react-spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.52 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
{
"name": "@react-spring/lerna",
"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": [
"Alec Larson (https://github.com/aleclarson)"
],
"workspaces": {
"packages": [
"packages/*",
"targets/*"
],
"nohoist": [
"**"
]
},
"scripts": {
"build": "bic",
"clean": "lerna exec --parallel --no-bail -- rimraf node_modules dist .rpt2_cache .bic_cache",
"prepare": "node ./scripts/prepare.js && bic && yarn test:ts",
"release": "node ./scripts/release.js",
"test": "jest",
"test:cov": "jest --coverage",
"test:ts": "cd packages/react-spring && tsc -p . --noEmit"
},
"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.11.6",
"@babel/preset-env": "^7.11.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"build-if-changed": "^1.5.0",
"chalk": "^2.4.2",
"enquirer": "^2.3.2",
"esbuild": "^0.8.0",
"esbuild-jest": "^0.2.2",
"execa": "^2.0.4",
"flush-microtasks": "^1.0.1",
"fs-extra": "7.0.1",
"husky": "1.3.1",
"jest": "^25.1.0",
"jest-watch-typeahead": "^0.3.1",
"lerna": "3.15.0",
"meta": "^1.2.19",
"mock-raf": "npm:@react-spring/mock-raf",
"prettier": "^2.0.5",
"pretty-quick": "1.10.0",
"react": "~16.9.0",
"recrawl-sync": "^1.2.2",
"rimraf": "2.6.3",
"rollup": "^2.7.6",
"rollup-plugin-dts": "^1.4.11",
"rollup-plugin-esbuild": "^2.5.0",
"sade": "^1.6.1",
"sort-package-json": "1.22.1",
"spec.ts": "1.1.3",
"typescript": "^4.0.0",
"typescript-rewrite-paths": "^1.2.0"
},
"publishConfig": {
"access": "public"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-spring"
}
}