-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.98 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
{
"version": "1.2.3",
"name": "jbrowse-plugin-ideogram",
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/jbrowse-plugin-ideogram.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"setup": "node scripts/setup.js && npm run browse-install",
"clean": "rimraf dist",
"start": "tsdx watch --verbose --noClean --format umd --name JBrowsePluginIdeogram --onFirstSuccess \"serve --cors --listen 9080 .\"",
"prebuild": "npm run clean",
"build": "tsdx build --format cjs,esm,umd --name JBrowsePluginIdeogram && cp distconfig.json dist/config.json",
"browse-install": "cd .jbrowse && rm -rf * && jbrowse create .",
"browse": "cd .jbrowse && cp ../jbrowse_config.json . && mv jbrowse_config.json config.json && npx serve .",
"test": "tsdx test",
"lint": "tsdx lint",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"postinstall": "jbrowse-plugin-postinstall",
"postversion": "git push --follow-tags"
},
"jbrowse-plugin": {
"name": "Ideogram"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@material-ui/icons": "^4.11.2",
"@types/uuid": "^8.3.4",
"ideogram": "^1.29.0"
},
"peerDependencies": {
"@jbrowse/core": "^1.0.4"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"@jbrowse/cli": "^1.0.4",
"@jbrowse/core": "^1.0.4",
"@jbrowse/development-tools": "^1.0.3",
"@jbrowse/plugin-linear-genome-view": "^1.5.1",
"@material-ui/core": "^4.9.13",
"@material-ui/lab": "^4.0.0-alpha.45",
"@types/react": "^17.0.0",
"cypress": "^6.2.1",
"mobx": "^5.0.0",
"mobx-react": "^6.0.0",
"mobx-state-tree": "3.14.1",
"react": "^16.8.0",
"react-spinners": "^0.11.0",
"rimraf": "^3.0.2",
"rxjs": "^6.0.0",
"serve": "^11.3.2",
"start-server-and-test": "^1.11.7",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}