forked from antoinelin/react-locomotive-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "@studio-freight/react-locomotive-scroll",
"version": "0.3.6",
"description": "A locomotive-scroll React wrapper",
"main": "module/index.js",
"module": "module/index.js",
"typings": "module/index.d.ts",
"repository": "git@github.com:studio-freight/react-locomotive-scroll.git",
"author": "Antoine <contact@antoinelin.com>",
"license": "MIT",
"keywords": [
"react",
"locomotive-scroll",
"smooth-scroll",
"typescript"
],
"files": [
"lib",
"module"
],
"scripts": {
"build": "rm -rf ./module && tsc",
"lint": "eslint --quiet",
"format": "prettier --debug-check lib/**/*.{ts,tsx}",
"prepare": "yarn lint && yarn format && yarn build",
"release": "dotenv release-it --"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"lib/**/*.{ts,tsx,js,jsx,md}": [
"eslint --quiet",
"prettier --write"
]
},
"dependencies": {
"use-debounce": "^8.0.1",
"use-resize-observer": "9.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/react": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"commitizen": "4.2.4",
"dotenv-cli": "^5.1.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"lint-staged": "13.0.0",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "2.3.4",
"release-it": "^15.0.0",
"tslib": "^2.4.0",
"typescript": "4.7.2"
},
"peerDependencies": {
"locomotive-scroll": "^4.1.4",
"react": "^17.0.2"
}
}