This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
forked from parlx-js/react-parlx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.7 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
{
"name": "react-parlx",
"version": "1.3.0",
"description": "parlx.js implementation for React component",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "./lib/react-parlx.min.js",
"scripts": {
"release": "npm run prettier && npm run lint && npm run build:dev && npm run build",
"build": "webpack --env build",
"build:dev": "webpack --env dev",
"watch": "npm run build -- --watch",
"watch:dev": "npm run build:dev -- --watch",
"lint": "eslint ./src --fix",
"prettier": "prettier --write 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/JB1905/react-parlx.git"
},
"keywords": [
"React",
"component",
"parallax",
"movement",
"scroll",
"effect"
],
"bugs": {
"url": "https://github.com/JB1905/react-parlx/issues"
},
"homepage": "https://github.com/JB1905/react-parlx#readme",
"dependencies": {
"parlx.js": "git@github.com:pmfawkes/parlx.js.git#667c92f814744b0a28a775bf7082e7bb57481179"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}