-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.62 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
{
"name": "@0x1461a0/scroll-x",
"version": "0.0.5",
"description": "",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/main.d.ts",
"keywords": [
"react",
"react-component",
"gallery",
"horizontal",
"scroll",
"scrolling",
"scrolling-menu"
],
"author": "xiefeng",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "vite",
"build": "vite build",
"prepare": "husky install",
"release": "standard-version"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"classnames": "^2.3.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@0x1461a0/commitlint-config": "^0.0.5",
"@0x1461a0/cz-config": "^0.0.5",
"@0x1461a0/eslint-config": "^0.0.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.2.0",
"commitizen": "^4.2.5",
"commitlint": "^17.2.0",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^7.0.0",
"eslint": "^8.27.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard-version": "^9.5.0",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@0x1461a0/cz-config"
}
},
"commitlint": {
"extends": [
"@0x1461a0"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}