-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.64 KB
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
{
"name": "react-video-scrolling",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"prepack": "yarn build",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "rollup -c && yarn tsc",
"start": "rollup -c rollup.serve.config.mjs -w",
"build:examples": "rollup -c rollup.examples.config.mjs",
"release": "standard-version",
"postrelease": "git push --follow-tags --no-verify",
"release:unstable": "yarn prerelease && standard-version --prerelease $(git branch --show-current | sed 's/\\//-/g') && yarn postrelease",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint"
},
"author": "Davide Gaggero",
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"@types/react": "^19.1.5",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"dotenv": "^16.5.0",
"eslint": "^9.27.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.41.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-externals": "^8.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.89.0",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"repository": "https://github.com/davidesamp/react-video-scrolling.git",
"keywords": [
"react",
"video",
"scrolling"
],
"license": "Apache-2.0",
"homepage": " https: //github.com/davidesamp/react-video-scrolling/blob/main/README.md",
"bugs": {
"url": "https://github.com/davidesamp/react-video-scrolling/issues"
}
}