-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
94 lines (94 loc) · 2.58 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
{
"name": "@sandstreamdev/react-swipeable-list",
"description": "Swipeable list component for React",
"version": "1.0.2",
"author": {
"name": "Sandstream Development",
"url": "https://github.com/sandstreamdev/react-swipeable-list/graphs/contributors"
},
"repository": {
"type": "git",
"url": "https://github.com/sandstreamdev/react-swipeable-list"
},
"license": "MIT",
"keywords": [
"swipe",
"swipeable",
"list",
"react",
"component",
"customizable",
"mobile",
"ios",
"android",
"touchscreen"
],
"main": "dist/react-swipeable-list.cjs.js",
"module": "dist/react-swipeable-list.esm.js",
"browser": "dist/react-swipeable-list.umd.js",
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0 || ^17 || ^18",
"react-dom": "^16.12.0 || ^17 || ^18"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@rollup/plugin-commonjs": "18.0.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"autoprefixer": "10.2.5",
"babel-eslint": "10.1.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"postcss": "8.2.10",
"prettier": "2.2.1",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"rollup": "2.45.1",
"rollup-plugin-babel": "4.4.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.0",
"stylelint": "13.12.0",
"stylelint-config-standard": "21.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint --ext .js --max-warnings=0 --cache ./",
"prepare": "npm run build",
"stylelint": "stylelint src/**/*.css examples/**/*.css --cache",
"prettier": "prettier src/**/*.js examples/**/*.js --check",
"test": "jest --no-cache"
},
"types": "dist/module.d.ts",
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
}
}