forked from EmaSuriano/react-scroll-section
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "react-scroll-section",
"version": "3.0.2",
"description": "React library to provide a declarative scroll to between sections",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "nwb serve-react-demo",
"clean": "nwb clean-module && nwb clean-demo",
"build:demo": "nwb build-demo",
"prebuild": "yarn clean",
"build": "tsc",
"prepublish": "yarn build",
"lint": "yarn eslint . --ext .ts,.tsx",
"test": "cypress run",
"test:open": "cypress open",
"test:ci": "start-server-and-test 3000"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^16.0.6",
"@types/react-toggle": "^4.0.2",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-eslint": "^10.0.1",
"cypress": "^5.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.11.1",
"nwb": "0.25.x",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-github-corner": "^2.3.0",
"react-toggle": "^4.0.2",
"start-server-and-test": "^1.11.0",
"styled-components": "^4.0.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3"
},
"author": "EmaSuriano",
"homepage": "https://emasuriano.github.io/react-scroll-section/",
"license": "MIT",
"repository": "https://github.com/EmaSuriano/react-scroll-section",
"keywords": [
"react-component",
"scroll",
"scrolling",
"section",
"declarative"
],
"dependencies": {
"smoothscroll-polyfill": "^0.4.4"
}
}