-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "jsorolla",
"version": "4.0.0-dev",
"description": "JSorolla is a JavaScript bioinformatic library for data analysis and genomic visualization",
"repository": {
"type": "git",
"url": "https://github.com/opencb/jsorolla.git"
},
"lint-staged": {
"**/*.js": [
"eslint"
]
},
"scripts": {
"serve": "npm run serve:dev",
"serve:dev": "webpack serve",
"serve:build": "cross-env PORT=4000 node ./scripts/server.js",
"clean": "rm -rf build",
"build": "npm run clean && cross-env NODE_ENV=production webpack build",
"test:open": "cypress open",
"test:prepare": "./prepare-test.sh",
"test:run": "cypress run --spec cypress/e2e/commons/data-form.cy.js,cypress/e2e/iva/**/*.cy.js",
"package": "mv build iva-$npm_package_version && tar zcvf iva-$npm_package_version.tar.gz iva-$npm_package_version && mv iva-$npm_package_version build",
"eslint": "eslint -c .eslintrc.json . --ignore-pattern '/web_modules/'"
},
"license": "Apache-2.0",
"dependencies": {
"@eonasdan/tempus-dominus": "^6.7.11",
"@fortawesome/fontawesome-free": "^5.11.2",
"backbone": "~1.3.3",
"bootstrap": "^5.3.3",
"bootstrap-table": "1.21.2",
"clipboard": "^2.0.6",
"cookies-js": "^1.2.3",
"highcharts": "^11.4.8",
"html-to-pdfmake": "^2.4.23",
"jquery": "^3.7.1",
"jwt-decode": "^2.2.0",
"lit": "^2.7.4",
"lodash": "^4.17.19",
"moment": "^2.15.1",
"pdfmake": "^0.2.7",
"qtip2": "~3.0.3",
"select2": "^4.1.0-rc.0",
"select2-bootstrap-5-theme": "^1.3.0",
"vanilla-jsoneditor": "^0.7.11"
},
"devDependencies": {
"@cypress/grep": "^3.1.5",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"cypress": "^13.15.1",
"cypress-mochawesome-reporter": "^3.2.3",
"cypress-wait-until": "^1.7.1",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-lit": "^1.4.1",
"eslint-plugin-sort-class-members": "^1.11.0",
"eslint-plugin-wc": "^1.3.0",
"html-webpack-plugin": "^5.6.2",
"lint-staged": "^11.0.0",
"mime-types": "^2.1.35",
"mini-css-extract-plugin": "^2.9.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"browserslist": [
"chrome > 79",
"firefox > 75",
">1%",
"not dead",
"not ie 11"
]
}