-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
105 lines (105 loc) · 3.11 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
100
101
102
103
104
105
{
"name": "react-selectable-fast",
"version": "3.4.0",
"description": "Enable other React components to be selectable by drawing a box with your mouse/touch",
"repository": {
"type": "git",
"url": "git://github.com/valerybugakov/react-selectable-fast.git"
},
"main": "lib/index.js",
"scripts": {
"clean": "rimraf ./lib ./dist",
"watch": "webpack --watch",
"build": "webpack",
"transpile": "tsc",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"prepublishOnly": "yarn lint && yarn clean && yarn build:prod && yarn transpile",
"prettier": "prettier --write src/**/*.{ts,tsx} example/src/**/*.{ts,tsx}",
"lint:basic": "tsc --pretty --noEmit && eslint --fix --format codeframe",
"lint": "yarn lint:basic '{example/,}src/**/*.{ts,tsx}'",
"format": "yarn prettier && yarn lint",
"test": "yarn lint",
"release": "release-it",
"watch:example": "webpack-dev-server --config ./example/webpack.config.example.js --content-base website",
"build:example": "webpack --config ./example/webpack.config.example.js --mode production"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"yarn lint:basic"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bugs": {
"url": "https://github.com/valerybugakov/react-selectable-fast/issues"
},
"engines": {
"node": ">8.0.0"
},
"keywords": [
"selectable",
"selection",
"mouse",
"fast",
"scrollable",
"performance",
"drag",
"touch",
"react"
],
"author": "Valery Bugakov <[email protected]> (https://github.com/valerybugakov/)",
"contributors": [
"Valery Bugakov <[email protected]> (https://github.com/valerybugakov/)"
],
"license": "MIT",
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/valerybugakov/react-selectable-fast#readme",
"directories": {
"example": "example"
},
"peerDependencies": {
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/react": "^16.9.6",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"release-it": "^13.5.2",
"rimraf": "^3.0.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}