-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
77 lines (77 loc) · 2.34 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
{
"name": "@patik/within-viewport",
"description": "Determine whether an element is completely within the browser viewport",
"version": "3.0.1",
"private": true,
"workspaces": [
"module",
"app"
],
"scripts": {
"dev": "yarn --cwd module tsc && yarn --cwd app dev",
"start": "yarn --cwd app start",
"start:ci": "yarn build && yarn --cwd app start",
"build": "yarn --cwd module build && yarn --cwd app build",
"clean": "git clean -fdx",
"cover": "yarn --cwd module test --collectCoverage",
"lint": "yarn workspaces run lint",
"preversion": "yarn workspaces run preversion",
"postversion": "git push && git push --tags",
"test": "yarn --cwd module test",
"cypress:open": "cypress open --project ./app",
"prepare": "husky install"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@parcel/transformer-sass": "^2.11.0",
"@types/jest": "^29.5.5",
"@types/node": "20.5.0",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "^12.17.1",
"eslint": "8.56.0",
"eslint-config-next": "13.5.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"typescript": "^5.5.2",
"unimported": "^1.31.1"
},
"repository": {
"type": "git",
"url": "https://github.com/patik/within-viewport.git"
},
"author": {
"name": "Craig Patik",
"email": "[email protected]",
"url": "https://patik.com"
},
"license": "BSD-3-Clause",
"keywords": [
"viewport",
"IntersectionObserver",
"window",
"DOM",
"visible",
"visibility",
"element",
"view",
"within-viewport",
"browser",
"detect",
"event",
"infinite-scroll",
"scroll"
]
}