-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 3.04 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
{
"name": "emr-processor",
"version": "0.0.1",
"description": "process emr data",
"repository": "https://github.com/supercoderhawk/emr-processor",
"scripts": {
"build": "npm run pack && build",
"build:dir": "npm run pack && build --dir",
"dev": "node tasks/runner.js",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter app",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter --fix app",
"pack": "npm run pack:main && npm run pack:renderer",
"pack:main": "cross-env NODE_ENV=production webpack -p --progress --colors --config webpack.main.config.js",
"pack:renderer": "cross-env NODE_ENV=production webpack -p --progress --colors --config webpack.renderer.config.js",
"postinstall": "npm run lint:fix && cd app && npm install"
},
"build": {
"productName": "EMR-Processor",
"appId": "cn.edu.usst.imie.emr-processor",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/",
"node_modules/",
"package.json"
],
"mac": {
"category": "public.app-category.tools",
"icon": "app/icons/icon.icns"
},
"win": {
"icon": "app/icons/icon.ico"
},
"linux": {
"target": [
"AppImage"
]
}
},
"author": "supercoderhawk <supercoderhawk@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-component": "^0.10.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.6.1",
"bootstrap": "^3.3.7",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"del": "^3.0.0",
"devtron": "^1.1.0",
"electron": "^1.7.5",
"electron-builder": "^19.16.2",
"electron-debug": "^1.2.0",
"electron-devtools-installer": "^2.2.0",
"electron-rebuild": "^1.5.11",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.8.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"jquery": "^3.1.1",
"json-loader": "^0.5.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"tree-kill": "^1.1.0",
"url-loader": "^0.5.9",
"vue-hot-reload-api": "^2.0.7",
"vue-html-loader": "^1.2.2",
"vue-loader": "^13.0.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.4.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {}
}