-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 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
75
76
{
"name": "repic-compressor",
"version": "0.2.2",
"main": "./index.js",
"author": "Margox",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config ./build/webpack.development.js -d --history-api-fallback --no-inline --progress --colors --hot",
"start": "cross-env NODE_ENV=development ./node_modules/.bin/electron . --debug",
"start-prod": "cross-env NODE_ENV=production ./node_modules/electron/cli.js .",
"build": "cross-env rm -rf ./renderer && cross-env NODE_ENV=production webpack --config ./build/webpack.production.js --progress --colors",
"dist": "npm run build && rm -rf ./dist-apps && electron-builder --publish always --config build/electron-builder.js",
"pack": "electron-builder --publish always --config build/electron-builder.js",
"pack-test": "electron-builder --publish always --config build/electron-builder-dev.js",
"lint": "node_modules/eslint/bin/eslint.js ."
},
"dependencies": {
"@mdi/font": "^3.6.95",
"compressorjs": "^1.0.5",
"decompress": "^4.2.0",
"electron-differential-updater": "^4.3.2",
"electron-log": "^4.2.4",
"electron-updater": "^4.3.1",
"mime-types": "^2.1.24",
"node-machine-id": "^1.1.12",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@hot-loader/react-dom": "16.8.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.9.1",
"babel-plugin-transform-runtime": "^6.23.0",
"cross-env": "^5.2.0",
"css-hot-loader": "^1.4.2",
"css-loader": "^0.28.11",
"electron": "^8.4.0",
"electron-builder": "^22.7.0",
"electron-notarize": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "next",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^4.0.0-beta.5",
"mini-css-extract-plugin": "^0.4.3",
"optimize-css-assets-webpack-plugin": "^4.0.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.3.11",
"react-router-dom": "^5.0.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.3"
}
}