-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
123 lines (123 loc) · 3.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "openhim-console",
"description": "This application provides a web application to configure and manage the OpenHIM-core component.",
"version": "1.18.3",
"dependencies": {
"http-server": "^14.1.1",
"keycloak-js": "^20.0.3",
"replace": "^1.2.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@kariudo/angular-fullscreen": "^1.0.2",
"@types/rimraf": "^3.0.2",
"angular": "^1.8.3",
"angular-bootstrap-colorpicker": "^3.0.32",
"angular-cookies": "^1.8.2",
"angular-file-upload": "^2.6.1",
"angular-highlightjs": "^0.7.1",
"angular-mocks": "^1.8.2",
"angular-resource": "^1.8.2",
"angular-route": "^1.8.2",
"angular-sanitize": "^1.8.2",
"angular-ui-bootstrap": "^2.5.0",
"babel-loader": "^8.2.2",
"bootstrap": "^3.4.1",
"chai": "^4.3.7",
"copy-webpack-plugin": "^6.4.1",
"crypto-js": "^4.1.1",
"css-loader": "^4.3.0",
"d3": "^7.8.4",
"dirty-chai": "^2.0.1",
"eonasdan-bootstrap-datetimepicker": "^4.17.49",
"file-loader": "^6.2.0",
"file-saver": "^2.0.5",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"jquery": "^3.6.0",
"json-loader": "^0.5.7",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.1.0",
"karma-dirty-chai": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"morris.js": "git+https://github.com/morrisjs/morris.js.git#77c24f6b70df2b23c7bd5d4d67240850d1b83005",
"ng-file-upload": "^12.2.13",
"pretty-data": "^0.40.0",
"raphael": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"sinon-chai": "3.5.0",
"speculate": "^2.1.1",
"standard": "^17.0.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.84.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0",
"webpack-sources": "^1.4.3"
},
"engines": {
"node": ">=0.12.0"
},
"standard": {
"globals": [
"angular",
"localStorage",
"Blob",
"sessionStorage",
"FileReader",
"$"
]
},
"spec": {
"requires": [
"nodejs"
],
"environment": {
"NODE_ENV": "production"
},
"post": [
"npm install -g http-server"
]
},
"scripts": {
"start": "http-server ./dist -p 9000",
"start:dev": "webpack-dev-server --config webpack.development.js",
"clean": "rimraf dist",
"lint": "standard 'app/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"test": "karma start --single-run",
"test:watch": "karma start --auto-watch",
"prepare": "npm run clean && npm run build:prod",
"build": "webpack --config webpack.development.js",
"build:prod": "NODE_OPTIONS=--max_old_space_size=4096 webpack --config webpack.production.js",
"version": "node versionManager.js && git add -u",
"spec": "speculate"
},
"repository": {
"type": "git",
"url": "https://github.com/jembi/openhim-console.git"
},
"keywords": [
"openhim",
"openhie"
],
"author": "Jembi Health Systems NPC",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jembi/openhim-console/issues"
},
"homepage": "http://openhim.org"
}