-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.27 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
{
"name": "react-phylogeny-tree",
"version": "0.0.4",
"description": "React component (and hook) for phylogenetic tree visualistion based on @mkoliba/phylogeny-tree",
"author": "Martin Koliba",
"license": "MIT",
"keywords": [
"phylogeny",
"newick",
"tree",
"phylogenetic",
"phylo",
"react-component",
"react-hook",
"biojs",
"phylogenetic tree"
],
"main": "lib/index.js",
"homepage": "https://github.com/mkoliba/react-phylogeny-tree",
"repository": {
"type": "git",
"url": "https://github.com/mkoliba/react-phylogeny-tree.git"
},
"exports": {
".": "./lib/index.js",
"./plugins": "./lib/plugins",
"./hooks": "./lib/hooks",
"./css": "./lib/css",
"./css/zoom.css": "./lib/css/zoom.css",
"./utils": "./lib/utils.js"
},
"types": "lib",
"typesVersions": {
"*": {
"plugins": [
"lib/plugins"
],
"hooks": [
"lib/hooks"
],
"utils": [
"lib/utils.d.ts"
]
}
},
"files": [
"lib",
"lib/css",
"README.md"
],
"scripts": {
"clean": "rimraf lib/",
"copy-files": "copyfiles -f src/css/*.css lib/css/",
"build": "tsc && yarn copy-files",
"prepare": "yarn clean && yarn build",
"format": "prettier --write src && eslint src --ext .js,.jsx,.ts,.tsx",
"watch": "watch 'yarn build' ./src"
},
"dependencies": {
"@mkoliba/phylogeny-tree": "^3.18.0-beta.7",
"@mkoliba/phylogeny-tree-plugin-context-menu": "^3.18.0-beta.7",
"@mkoliba/phylogeny-tree-plugin-interactions": "^3.18.0-beta.7"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"copyfiles": "^2.4.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.1",
"prettier-eslint": "^12.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.2",
"watch": "^1.0.2"
}
}