forked from Eliav2/react-xarrows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 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
100
101
102
103
{
"name": "react-xarrows",
"version": "2.0.2",
"author": "Eliav Louski",
"description": "Draw arrows (or lines) between components in React!",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "webpack --mode development --config-name lib",
"build:prod": "webpack --mode production --config-name lib",
"build:dev": "webpack --mode development --config-name lib",
"build:ts": "tsc",
"start": "yarn --cwd .\\examples\\ start",
"watch": "npm run watch:ts",
"watch:webpack": "webpack --watch --progress --mode development --config-name lib",
"watch:ts": "npm run clear:lib && tsc -w",
"clear:lib": "del /q lib && for /d %x in (lib\\*) do @rd /s /q \"%x\"",
"prepublishOnly": "yarn run build"
},
"homepage": "https://eliav2.github.io/react-xarrows/",
"repository": {
"type": "git",
"url": "https://github.com/Eliav2/react-xarrows"
},
"bugs": "https://github.com/Eliav2/react-xarrows/issues",
"dependencies": {
"@types/prop-types": "^15.7.3",
"lodash": "^4.17.21",
"prop-types": "^15.7.2"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate?hosted_button_id=CRQ343F9VTRS8"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.1",
"@types/react": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.5",
"react": "^17.0.2",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.4",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"license": "MIT",
"files": [
"lib",
"package.json",
"README.md"
],
"prettier": {
"printWidth": 120,
"jsxBracketSameLine": true,
"singleQuote": true,
"tabWidth": 2
},
"keywords": [
"react",
"reactjs",
"line",
"lines",
"arrow",
"arrows",
"xarrows",
"draw",
"connect",
"between",
"elements",
"element"
]
}