forked from TeselaGen/openVectorEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "open-vector-editor",
"version": "18.1.16",
"description": "Teselagen's Open Source Vector Editor",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component --copy-files --no-demo",
"buildWithDemo": "nwb build-react-component --copy-files",
"build-watch": "nodemon --watch src --exec \"rm .babelrc; yarn build\" ",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo --port 3344",
"localj5": "AMQP=localhost:5672 REMOTE_J5=http://localhost:10000 nwb serve-react-demo --port 3344",
"c": "yarn cypress open",
"test-e2e": "yarn cypress run --record --key 373658d4-4931-4ffd-9263-8eb78a838ab9",
"changelog": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@blueprintjs/core": "3.52.0",
"@blueprintjs/datetime": "3.23.19",
"@blueprintjs/select": "3.18.11",
"@fontsource/ubuntu-mono": "^4.5.0",
"@risingstack/react-easy-state": "^6.3.0",
"@teselagen/react-list": "^0.8.18",
"@use-gesture/react": "^10.2.15",
"bio-parsers": "^8.3.31",
"classnames": "^2.3.1",
"clipboard": "2.0.8",
"color": "^3.1.3",
"combokeys": "^3.0.1",
"deep-equal": "^1.0.1",
"dom-to-image": "^2.6.0",
"downloadjs": "^1.4.7",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"is-mobile": "^3.1.1",
"node-interval-tree": "^1.3.3",
"paths-js": "^0.4.11",
"pluralize": "^7.0.0",
"popper.js": "^1.16.1",
"prop-types": "^15.8.1",
"react-beautiful-dnd": "^13.1.0",
"react-draggable": "4.4.4",
"react-dropzone": "^11.4.2",
"react-measure": "^2.5.2",
"react-redux": "^7.2.6",
"react-router-dom": "^4.3.1",
"react-sizeme": "^2.5.2",
"recompose": "npm:[email protected]",
"redux": "^4.2.0",
"redux-act": "^1.8.0",
"redux-form": "^8.3.8",
"redux-ignore": "^1.2.5",
"redux-thunk": "2.4.1",
"reselect": "^4.0.0",
"shortid": "^2.2.16",
"teselagen-react-components": "30.10.4",
"tg-use-local-storage-state": "^16.0.1",
"use-debounce": "^8.0.3",
"use-local-storage-state": "^13.0.0",
"ve-range-utils": "^2.6.6",
"ve-sequence-utils": "^5.1.34"
},
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.9.0"
},
"optionalDependencies": {
"cypress": "^10.6.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@types/lodash": "npm:@types/lodash-es",
"auto-changelog": "^2.4.0",
"babel-plugin-istanbul": "^6.0.0",
"copy-to-clipboard": "^3.3.1",
"eslint": "^8.21.0",
"eslint-config-teselagen": "^6.0.6",
"gh-pages": "^4.0.0",
"husky": "^4.3.8",
"lint-staged": "10.5.4",
"nwb": "0.25.2",
"papaparse": "^5.3.2",
"prettier": "2.7.1",
"react": "^17.0.2",
"react-addons-perf": "^15.4.2",
"react-dom": "^17.0.2",
"react-markdown": "4.0.6",
"to-regex-range": "^5.0.1"
},
"resolutions": {
"listr": "0.14.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn changelog; lint-staged"
}
},
"lint-staged": {
"addons/**/*.js|src/**/*.js|demo/**/*.js|cypress/**/*.js|nwb.config.js": [
"eslint --rule 'no-ignore: 0' --rule 'react/jsx-curly-brace-presence: 1' --fix --max-warnings=0",
"prettier --write"
],
"**/*.css": [
"prettier --write"
]
},
"license": "MIT",
"repository": "https://github.com/TeselaGen/openVectorEditor",
"homepage": "https://github.com/TeselaGen/openVectorEditor",
"keywords": [
"react-component",
"plasmid",
"vector",
"editor",
"alignment",
"sequence",
"sequence-alignment",
"msa",
"multiple-sequence-alignment",
"pairwise",
"pairwise-alignment",
"teselagen"
]
}