-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "SGRQ",
"version": "1.3.0",
"productName": "SGQR",
"description": "A medical application",
"author": {
"name": "CPHCRD",
"url": "https://cphcrd.github.io"
},
"homepage": "http://sgrq.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/CPHCRD/sgrq.git"
},
"main": "",
"scripts": {
"clean": "rm -rf node_modules && npm cache clean",
"clean-install": "npm run clean && npm install",
"clean-start": "npm run clean && npm start",
"dev": "npm run watch",
"watch": "node ./node_modules/webpack/bin/webpack --watch --progress --profile --colors --display-error-details --display-cached",
"build": "node ./node_modules/webpack/bin/webpack --progress --profile --colors --display-error-details --display-cached",
"build:prod": "node ./node_modules/webpack/bin/webpack --progress --profile --colors --display-error-details --display-cached --optimize-occurence-order --optimize-minimize --optimize-dedupe",
"build:run": "node ./node_modules/webpack/bin/webpack --progress --profile --colors --display-error-details --display-cached && cd ./build && npm install",
"build:prod:run": "node ./node_modules/webpack/bin/webpack --progress --profile --colors --display-error-details --display-cached --optimize-occurence-order --optimize-minimize --optimize-dedupe && cd ./build && npm install",
"start": "npm run watch",
"electron": "cd build && npm start",
"build:electron": "npm run build:prod && cd build && npm install && npm run package",
"test": "browserify -t babelify ./test/*.spec.js | tape-run --browser=\"phantomjs\" | tap-spec",
"test:electron": "browserify -t babelify ./test/*.spec.js | tape-run | tap-spec",
"postinstall": "npm run build:prod:run"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"dialog-polyfill": "^0.4.3",
"jquery": "*",
"material-design-lite": "^1.1.3",
"nedb": "^1.8.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browser-launcher": "^1.0.0",
"browser-sync": "^2.11.0",
"browser-sync-webpack-plugin": "^1.0.1",
"browserify": "^13.0.0",
"css-loader": "^0.23.1",
"electron": "^3.0.10",
"electron-packager": "^13.0.0",
"es6-promise": "^3.0.2",
"exports-loader": "^0.6.2",
"file-loader": "^0.8.5",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.2.0",
"handlebars-webpack-plugin": "0.0.6",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"node-sass": "^4.12.2",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tape-run": "^2.1.3",
"webpack": "^1.12.11",
"whatwg-fetch": "^0.11.0"
},
"engines": {
"node": "12"
}
}