-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.4 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
{
"version": "0.0.1",
"name": "jbrowse-plugin-template",
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"config": {
"port": 9000,
"browse": {
"port": 8999
},
"jbrowse": {
"plugin": {
"name": "Template"
}
}
},
"scripts": {
"setup": "npm-run-all setup:*",
"setup:file": "ts-node scripts/setup.ts",
"setup:jbrowse": "npm-run-all setup:jbrowse:*",
"setup:jbrowse:clean": "rimraf .jbrowse",
"setup:jbrowse:create": "jbrowse create .jbrowse",
"clean": "rimraf dist",
"start": "npm-run-all --sequential clean --parallel start:*",
"start:watch": "cross-env JB_NPM=false NODE_ENV=development rollup --config --watch --bundleConfigAsCjs",
"start:server": "serve --cors --listen $npm_package_config_port .",
"prebuild": "npm-run-all clean",
"build": "rollup --config --bundleConfigAsCjs",
"browse": "npm-run-all jbrowse:*",
"jbrowse:configure": "shx cp jbrowse_config.json .jbrowse/config.json",
"jbrowse:serve": "cross-var serve --listen $npm_package_config_browse_port .jbrowse",
"test": "jest",
"test:e2e": "cross-var start-test \"npm-run-all --parallel start browse\" \"$npm_package_config_port|$npm_package_config_browse_port\" \"npm-run-all cypress:run\"",
"cypress:run": "cross-var cypress run --headless --browser chrome --config baseUrl=http://localhost:$npm_package_config_browse_port",
"cypress:open": "cross-var cypress open --config baseUrl=http://localhost:$npm_package_config_browse_port",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src/",
"prepublishOnly": "npm-run-all test",
"prepack": "npm-run-all build",
"postversion": "git push --follow-tags"
},
"jbrowse-plugin": {
"name": "Template"
},
"peerDependencies": {
"@jbrowse/core": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-react": "^7.10.4",
"@emotion/react": "^11.10.4",
"@jbrowse/cli": "^2.6.1",
"@jbrowse/core": "^2.6.1",
"@jbrowse/development-tools": "^2.1.1",
"@mui/material": "^5.10.5",
"@mui/system": "^5.10.5",
"@mui/x-data-grid": "^7.6.1",
"@schemastore/package": "^0.0.10",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^15.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"chalk": "^4.0.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"cypress": "^13.6.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.6.1",
"mobx": "^6.0.0",
"mobx-react": "^9.1.0",
"mobx-state-tree": "5.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.0.0",
"rxjs": "^7.8.1",
"serve": "^14.2.0",
"shx": "^0.3.3",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.3.0",
"tss-react": "^4.8.6",
"typescript": "^5.3.3"
},
"private": true
}