-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.67 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
{
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@popperjs/core": "^2.11.8",
"choices.js": "^11.1.0",
"lodash.debounce": "^4.0.8",
"npm": "^11.2.0",
"simple-datatables": "^10.0.0",
"sortablejs": "^1.15.6",
"tippy.js": "^6.3.7"
},
"name": "gens",
"version": "4.6.2",
"description": "Interactive tool to visualize genomic copy number profiles from WGS data",
"main": "gens.ts",
"scripts": {
"build": "gulp build",
"buildcp": "gulp build && cp --verbose build/js/gens.min.js gens/blueprints/gens/static/ && cp --verbose build/css/*.css gens/blueprints/home/static/ && cp --verbose build/css/*.css gens/blueprints/gens/static/",
"buildcpjs": "gulp build && cp --verbose build/js/gens.min.js gens/blueprints/gens/static/",
"eslint": "eslint frontend",
"lint": "eslint frontend",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier frontend --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"watch": "gulp watch",
"test": "jest",
"typecheck": "npx tsc --noEmit",
"sync": "npm run typecheck && npm run buildcp",
"syncl": "npm run typecheck && npm run eslint && npm run buildcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clinical-Genomics-Lund/Gens.git"
},
"author": "Markus Johansson",
"license": "",
"bugs": {
"url": "https://github.com/Clinical-Genomics-Lund/Gens/issues"
},
"homepage": "https://github.com/Clinical-Genomics-Lund/Gens#readme",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.24.0",
"@types/gulp": "^4.0.17",
"@types/gulp-rename": "^2.0.6",
"@types/gulp-sass": "^5.0.4",
"@types/gulp-sourcemaps": "^0.0.38",
"@types/gulp-uglify": "^3.0.11",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/webpack": "^5.28.5",
"css-loader": "^7.1.2",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^6.0.1",
"gulp-sourcemaps": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.5.3",
"process": "^0.11.10",
"regenerator-runtime": "^0.14.1",
"sass": "^1.86.3",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tippy": "^0.0.0",
"ts-jest": "^29.3.1",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1",
"webpack": "^5.99.2",
"webpack-cli": "^6.0.1"
}
}