forked from TeselaGen/openVectorEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.82 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
132
{
"name": "open-vector-editor",
"version": "16.3.5",
"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",
"//sl": "webpack-link && source .linkEnv; nwb serve-react-demo --port 3344",
"start": "nwb serve-react-demo --port 3344",
"localj5": "AMQP=localhost:5672 REMOTE_J5=http://localhost:10000 nwb serve-react-demo --port 3344",
"prepublish": "in-publish && npm run build || not-in-publish",
"postpublish": "yarn deploy",
"predeploy": "yarn buildWithDemo",
"deploy": "gh-pages -m 'auto commit [ci skip]' -d demo/dist",
"fontopen": "make fontopen",
"fontsave": "make fontsave",
"c": "yarn cypress open",
"test-e2e": "yarn cypress run --record --key 373658d4-4931-4ffd-9263-8eb78a838ab9",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"@blueprintjs/core": "^3.42.0",
"@blueprintjs/datetime": "^3.22.0",
"@blueprintjs/select": "^3.15.9",
"@risingstack/react-easy-state": "^6.3.0",
"@teselagen/react-list": "^0.8.18",
"axios": "^0.21.1",
"bio-parsers": "^8.3.13",
"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",
"file-saver": "^2.0.5",
"is-mobile": "^3.0.0",
"node-interval-tree": "^1.3.3",
"paths-js": "^0.4.11",
"pluralize": "^7.0.0",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react-beautiful-dnd": "^13.1.0",
"react-draggable": "^3.2.1",
"react-dropzone": "^4.2.11",
"react-measure": "^2.5.2",
"react-redux": "^5",
"react-router-dom": "^4.3.1",
"react-sizeme": "^2.5.2",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-act": "^1.8.0",
"redux-form": "^7",
"redux-ignore": "^1.2.5",
"redux-thunk": "2.3.0",
"reselect": "^4.0.0",
"shortid": "^2.2.16",
"teselagen-react-components": "^30.3.6",
"tg-react-reflex": "^2.0.10",
"typeface-ubuntu-mono": "^0.0.54",
"use-local-storage-state": "^9.0.2",
"ve-range-utils": "^2.5.9",
"ve-sequence-utils": "^5.1.1"
},
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.4",
"@types/lodash": "npm:@types/lodash-es",
"auto-changelog": "^2.3.0",
"babel-plugin-istanbul": "^6.0.0",
"copy-to-clipboard": "^3.3.1",
"cypress": "7.5.0",
"drag-mock": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-teselagen": "^5.0.9",
"gh-pages": "^3.2.0",
"husky": "^4.3.8",
"in-publish": "^2.0.1",
"lint-staged": "10.5.4",
"nwb": "0.25.2",
"prettier": "2.3.1",
"react": "^16.10.2",
"react-addons-perf": "^15.4.2",
"react-dom": "^16.9.0",
"react-markdown": "^4.3.1"
},
"resolutions": {
"listr": "0.14.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"addons/**/*.js|src/**/*.js|demo/**/*.js|cypress/**/*.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",
"keywords": [
"react-component",
"plasmid",
"vector",
"editor",
"alignment",
"sequence",
"sequence-alignment",
"msa",
"multiple-sequence-alignment",
"pairwise",
"pairwise-alignment",
"teselagen"
]
}