-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.55 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
{
"name": "scroller-motion",
"version": "1.2.3",
"description": "🛹 Elegant motion scrolling for React",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.mjs",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": "Brad Adams <[email protected]> (https://breadadams.com/)",
"contributors": [
"Rijk van Wel <[email protected]> (https://github.com/rijk)"
],
"homepage": "https://scroller-motion.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/breadadams/scroller-motion"
},
"bugs": {
"url": "https://github.com/breadadams/scroller-motion/issues"
},
"scripts": {
"start": "start-storybook",
"clean": "rm -rf dist",
"build": "npm run clean && microbundle -f modern,cjs,umd",
"build:storybook": "build-storybook",
"prepublishOnly": "npm run build",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"prettier:staged": "pretty-quick --staged",
"prepare": "husky install",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"debounce-fn": "^4.0.0"
},
"peerDependencies": {
"framer-motion": "^6.5.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@storybook/addon-links": "^6.5.15",
"@storybook/addons": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^17.0.13",
"@types/react": "^18.0.28",
"@types/resize-observer-browser": "^0.1.6",
"@types/styled-components": "^5.1.21",
"framer-motion": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-config": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"microbundle": "^0.15.1",
"postcss": "^8.4.5",
"prettier": "2.8.4",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resize-observer-polyfill": "^1.5.1",
"storybook-addon-jsx": "^7.3.14",
"styled-components": "^5.3.3",
"typescript": "^4.9.5"
},
"files": [
"dist/*"
],
"keywords": [
"react",
"scroller",
"motion",
"spring",
"scroll",
"framer",
"parallax",
"smooth"
],
"engines": {
"node": ">= 12"
}
}