-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
97 lines (97 loc) · 2.65 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
{
"name": "@researchgate/react-intersection-observer",
"description": "React component for the Intersection Observer API",
"version": "1.3.5",
"author": "Luis Merino <[email protected]>",
"engines": {
"node": ">=10.18.1"
},
"bugs": {
"url": "https://github.com/researchgate/react-intersection-observer/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@researchgate/babel-preset": "2.0.14",
"@researchgate/spire-config": "7.0.0",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-options": "5.3.21",
"@storybook/react": "6.5.13",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.5.2",
"@types/react": "17.0.52",
"@types/react-dom": "17.0.18",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.3.0",
"intersection-observer": "0.12.2",
"npm-run-all": "4.1.5",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"spire": "4.1.2",
"spire-plugin-semantic-release": "4.1.0",
"storybook-readme": "5.0.9",
"typescript": "4.0.5"
},
"files": [
"lib",
"typings"
],
"homepage": "https://github.com/researchgate/react-intersection-observer#readme",
"keywords": [
"Intersection",
"Observer",
"react",
"component",
"viewport",
"visible",
"invisible",
"researchgate"
],
"license": "MIT",
"main": "lib/js/index.js",
"module": "lib/es/index.js",
"types": "typings/index.d.ts",
"peerDependencies": {
"react": "^16.3.2 || ^17.0.0",
"react-dom": "^16.3.2 || ^17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/researchgate/react-intersection-observer.git"
},
"prettier": "@researchgate/prettier-config",
"spire": {
"extends": [
[
"@researchgate/spire-config",
{
"eslint": "react-typescript"
}
]
],
"plugins": [
"spire-plugin-semantic-release"
]
},
"scripts": {
"build": "run-s build:esm build:cjs",
"build:esm": "tsc --build",
"build:cjs": "tsc --outDir ./lib/js --module CommonJS",
"build:storybook": "build-storybook -o .docs",
"clean:lib": "rm -rf lib",
"clean:typescript": "tsc --build --clean",
"clean": "run-p clean:*",
"format": "spire format",
"lint": "spire lint",
"prepare": "run-s clean build",
"prerelease": "run-s lint test",
"release": "spire release",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "spire test"
}
}