-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.58 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
79
{
"name": "redcap-vizr",
"version": "3.0.1",
"description": "Visualization tool for REDCap",
"main": "./dist/bundle.js",
"scripts": {
"analyze": "webpack --mode=production; webpack --profile --json > bundle-stats.json; webpack-bundle-analyzer bundle-stats.json dist",
"build-dev": "webpack --mode=development",
"build": "webpack --mode=production",
"check_format:js": "prettier --check ./*.js js test",
"clean": "rm -rf dist junit bundle-stats.json",
"format:js": "prettier --write ./*.js js test",
"lint:js": "eslint --ext .js --ext .vue ./*.js js test",
"prebuild": "npm install",
"start": "WATCHING=1 webpack --mode=development --progress --colors --watch",
"test-ci": "karma start karma.conf.js --single-run --browsers Chrome_Headless",
"test-jenkins": "karma start karma.conf.js --single-run --reporters junit --browsers Chrome_Headless",
"test-single-run": "karma start karma.conf.js --single-run",
"test": "karma start karma.conf.js --single-run"
},
"author": "BMIP - OCTRI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://octriinternal.ohsu.edu/stash/scm/reddev/vizr.git"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@vue/test-utils": "^1.3.6",
"babel-loader": "^9.1.3",
"chart.js": "^2.9.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"file-loader": "^6.2.0",
"flush-promises": "^1.0.2",
"git-repo-info": "^2.1.1",
"html-webpack-plugin": "5.6.0",
"jasmine-ajax": "^4.0.0",
"jasmine-core": "^5.3.0",
"jquery": "^3.7.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-spec-reporter": "~0.0.36",
"karma-webpack": "^5.0.1",
"mini-css-extract-plugin": "^2.9.1",
"moment": "^2.30.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.25.6",
"axios": "^1.7.7",
"lodash": "^4.17.21",
"qs": "^6.13.0",
"striptags": "^3.2.0",
"uuid": "^10.0.0",
"vue": "^2.7.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}