-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "react-full-page",
"version": "0.1.12",
"description": "Full page scrolling with React",
"main": "./lib",
"directories": {
"example": "examples"
},
"scripts": {
"start": "webpack-dev-server",
"test": "eslint src/**/*.jsx && eslint src/**/*.js",
"build": "webpack -p",
"prepublish": "./node_modules/.bin/babel ./src --out-dir ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zwug/react-full-page.git"
},
"author": "Kirill Mironov",
"license": "MIT",
"bugs": {
"url": "https://github.com/zwug/react-full-page/issues"
},
"homepage": "https://github.com/zwug/react-full-page#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": "^0.14.10 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^0.14.10 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"core-js": "^3.16.2"
}
}