-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"dependencies": {
"@popperjs/core": "^2.9.2",
"npm": "^10.2.3",
"tippy.js": "^6.3.2"
},
"name": "gens",
"version": "3.0.0",
"type": "module",
"description": "Interactive tool to visualize genomic copy number profiles from WGS data",
"main": "gens.ts",
"scripts": {
"build": "gulp build",
"lint": "eslint assets",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier assets --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"watch": "gulp watch",
"test": "jest"
},
"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.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@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.12.0",
"@types/webpack": "^5.28.5",
"css-loader": "^5.2.7",
"eslint": "^7.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"process": "^0.11.10",
"regenerator-runtime": "^0.13.7",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"tippy": "^0.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0"
}
}