forked from jembi/openhim-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.12 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
{
"name": "openhim-console",
"description": "This application provides a web application to configure and manage the OpenHIM-core component.",
"version": "1.12.0-rc.3",
"dependencies": {
"@types/http-server": "^0.10.0",
"http-server": "^0.10.0",
"replace": "^0.3.0"
},
"devDependencies": {
"@kariudo/angular-fullscreen": "^1.0.1",
"@types/rimraf": "^2.0.2",
"angular": "^1.6.6",
"angular-bootstrap-colorpicker": "^3.0.31",
"angular-cookies": "^1.6.6",
"angular-file-upload": "^2.5.0",
"angular-highlightjs": "^0.7.1",
"angular-mocks": "^1.6.6",
"angular-resource": "^1.6.6",
"angular-route": "^1.6.6",
"angular-sanitize": "^1.6.6",
"angular-ui-bootstrap": "^2.5.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.7",
"d3": "^3.5.17",
"dirty-chai": "^2.0.1",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"file-saver": "^1.3.3",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"jquery": "^3.2.1",
"json-loader": "^0.5.7",
"karma": "^1.1.1",
"karma-dirty-chai": "^1.0.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon-chai": "1.2.3",
"lodash": "^4.17.4",
"mocha": "^2.5.3",
"moment": "^2.19.2",
"moment-timezone": "^0.5.14",
"morris.js": "^0.5.0",
"ng-file-upload": "^12.2.13",
"phantomjs-prebuilt": "^2.1.5",
"pretty-data": "^0.40.0",
"raphael": "^2.2.7",
"rimraf": "^2.6.2",
"sinon": "^1.17.4",
"sinon-chai": "2.8.0",
"speculate": "^1.7.4",
"standard": "^10.0.3",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.4"
},
"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": "NODE_ENV=prod http-server ./dist -p 9000",
"start:dev": "NODE_ENV=dev webpack-dev-server --hot=false",
"clean": "rimraf dist",
"lint": "standard 'app/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"test": "karma start --single-run --browsers PhantomJS",
"test:watch": "karma start --auto-watch",
"prepare": "npm run clean && npm run build:prod",
"build": "webpack",
"build:prod": "NODE_ENV=prod webpack",
"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"
}