-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.91 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
{
"name": "@overture-stack/dms-jbrowse-components",
"version": "0.1.0-beta.3",
"description": "Jbrowse components for DMS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/overture-stack/dms-jbrowse-components"
},
"scripts": {
"build::babel": "babel ./src --extensions .tsx,.ts,.js --out-dir ./dist",
"build::ts": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run build::babel && npm run build::ts",
"clean": "rm -rf dist && mkdir dist",
"dev": "npm run watch",
"type-check": "tsc -p ./tsconfig.json",
"watch": "npm run clean && (npm run build::babel -- --watch --source-maps=inline)"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"@types/react-dom": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.21.5",
"@jbrowse/react-circular-genome-view": "^2.6.3",
"@jbrowse/react-linear-genome-view": "^2.6.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.21.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"babel-loader": "^9.1.2",
"babel-preset-env": "^1.7.0",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
}
}