forked from jscottsmith/react-scroll-parallax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.72 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
{
"name": "react-scroll-parallax",
"version": "2.4.0",
"description": "React components to create parallax scroll effects for banners, images or any other DOM elements.",
"repository": {
"type": "git",
"url": "https://github.com/jscottsmith/react-scroll-parallax"
},
"files": [
"cjs",
"README.md",
"LICENSE"
],
"main": "./cjs/index.js",
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"scripts": {
"start": "yarn storybook",
"test": "BABEL_ENV=test jest",
"test:watch": "BABEL_ENV=test jest --watch",
"lint": "eslint ./src ./__tests__",
"prettier": "prettier --config ./.prettierrc --write \"{src,stories,__tests__}/**/*.js\"",
"prepublishOnly": "yarn test && ./publish.sh",
"storybook": "start-storybook -p 3000",
"storybook:build": "build-storybook",
"storybook:export": "build-storybook -c .storybook -o build",
"deploy": "yarn run storybook:export"
},
"jest": {
"modulePaths": [
"<rootDir>/src/"
],
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"/node_modules/",
"package.json",
"/stories/"
],
"collectCoverage": true,
"testURL": "http://localhost"
},
"keywords": [
"react",
"scroll",
"parallax",
"banner",
"animation",
"component"
],
"author": "J Scott Smith",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^16.3.0-0 || >=17.0.1",
"react-dom": "^16.3.0-0 || >=17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/jest": "^24.0.11",
"@types/react": "^17.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"codecov": "^3.0.0",
"cross-env": "^3.1.4",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-react": "^7.12.4",
"express": "^4.14.1",
"jest": "^24.0.1",
"node-sass": "^4.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.10.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.3"
}
}