forked from marekrozmus/react-swipeable-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.74 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
98
99
{
"name": "react-swipeable-list",
"description": "Swipeable list component for React",
"version": "1.9.1",
"author": {
"name": "Marek Rozmus",
"url": "https://github.com/marekrozmus/react-swipeable-list/graphs/contributors"
},
"repository": {
"type": "git",
"url": "https://github.com/marekrozmus/react-swipeable-list"
},
"license": "MIT",
"keywords": [
"react",
"swipe",
"swipeable",
"list",
"react",
"component",
"customizable",
"mobile",
"ios",
"android",
"touchscreen",
"listview",
"swipe-to-delete",
"swipe-actions"
],
"main": "dist/react-swipeable-list.cjs.js",
"module": "dist/react-swipeable-list.esm.js",
"browser": "dist/react-swipeable-list.umd.js",
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/eslint-parser": "7.16.5",
"@babel/plugin-proposal-class-properties": "7.16.5",
"@babel/plugin-transform-modules-commonjs": "7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-react": "7.16.5",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.1",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"autoprefixer": "10.4.0",
"clsx": "1.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-testing-library": "5.0.1",
"husky": "^7.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.4.5",
"lint-staged": "12.1.4",
"postcss": "8.4.5",
"prettier": "2.5.1",
"prop-types": "15.8.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "2.62.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-local-resolve": "1.0.7",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"stylelint": "14.2.0",
"stylelint-config-standard": "24.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --ext .js --max-warnings=0 --cache ./",
"prepare": "npm run build && husky install",
"stylelint": "stylelint src/**/*.css examples/**/*.css --cache",
"prettier": "prettier src/**/*.js examples/**/*.js --check",
"test": "jest --no-cache",
"test:watch": "jest --watch"
},
"types": "dist/module.d.ts",
"files": [
"dist"
],
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}