-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "react-page-scroller",
"version": "3.0.1",
"description": "Simple React component for smoothy full-page scolling",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component && cp ./src/index.d.ts ./lib",
"clean": "nwb clean-module && nwb clean-demo",
"ghbuild": "nwb build-demo",
"deploy": "npm run ghbuild && gh-pages -d demo/dist",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"dependencies": {
"babel-polyfill": "^6.26.0"
},
"peerDependencies": {
"babel-polyfill": "^6.26.0",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^1.1.0",
"nwb": "^0.25.2",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^18.2.0",
"react-router-dom": "^4.3.1"
},
"author": "Viktor Liegostaiev",
"homepage": "https://vikliegostaiev.github.io/react-page-scroller/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vikliegostaiev/react-page-scroller.git"
},
"keywords": [
"react-component",
"full-page",
"scroll",
"smoothy"
]
}