-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "healthyweight-smart-app",
"version": "1.0.0",
"description": "Healthy Weight SMART on FHIR App",
"main": "index.js",
"scripts": {
"test": "echo \"TODO: Write tests\"",
"clean": "rimraf dist && rimraf coverage*",
"build": "npm run clean && webpack --progress --colors --env.mode=production --env.target=web",
"build:dev": "npm run clean && webpack --progress --colors --env.mode=dev --env.target=web",
"build:prod": "npm run test && npm run build",
"watch": "webpack --progress --colors --watch --env.mode=deploy --env.target=web",
"livereload": "webpack-dev-server --port 8999 --inline --hot --env.mode=dev --env.target=web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psbrandt/healthyweight-fhir-app.git"
},
"author": "OpenMRS <pascal@openmrs.org> (http://openmrs.org)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/psbrandt/healthyweight-fhir-app/issues"
},
"homepage": "https://github.com/psbrandt/healthyweight-fhir-app#readme",
"dependencies": {
"chart.js": "^2.5.0",
"material-design-lite": "^1.3.0",
"moment": "^2.17.1",
"superagent": "^3.4.4",
"vue": "^2.1.10",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"browser-sync": "^2.11.1",
"browser-sync-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.24.1",
"http-server": "^0.9.0",
"ip": "^1.1.4",
"on-build-webpack": "^0.1.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"yargs": "^4.3.1"
}
}