-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.02 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.02 KB
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
{
"name": "myseq",
"version": "0.2.0",
"private": true,
"engines": {
"node": "12"
},
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"classnames": "^2.2.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"lodash": "^4.17.15",
"myseq-vcf": "^2.0.0",
"prettier": "^2.0.5",
"promise-worker": "^2.0.1",
"prop-types": "^15.7.2",
"query-string": "^6.12.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-test-renderer": "^16.13.1",
"react-vis": "^1.11.7",
"reactstrap": "^8.4.1",
"styled-components": "^5.1.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=./src/custom-test-env.js",
"eject": "react-scripts eject",
"lint": "eslint src"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-async-helpers": "^0.9.1",
"eslint-config-prettier": "^6.11.0",
"jest-fetch-mock": "^3.0.3",
"react-app-rewired": "^2.1.6",
"worker-loader": "^2.0.0"
},
"description": "MySeq is a web-application for interactive analysis of personal genomes.",
"repository": {
"type": "git",
"url": "git+https://github.com/mlinderm/myseq.git"
},
"keywords": [
"MySeq",
"genomics",
"VCF"
],
"author": "Michael Linderman <mlinderman@middlebury.edu>",
"contributors": [
"Leo McElroy <lmcelroy@middlebury.edu>",
"Laura Chang <hayoungc@middlebury.edu>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mlinderm/myseq/issues"
},
"homepage": "http://skylight.middlebury.edu/~mlinderman/myseq",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
}
}