This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.22 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
{
"name": "fileshare-desktop",
"version": "0.4.1",
"description": "StoreWise File Share App",
"main": "lib/index.js",
"scripts": {
"start": "electron .",
"start:debug": "DEV_TOOLS=true electron .",
"postinstall": "electron-builder install-app-deps",
"build": "webpack --display-used-exports",
"build:production": "webpack --mode production -p --display-used-exports",
"build:watch": "webpack -w",
"check": "eslint src",
"check:fix": "eslint --fix src",
"pack": "electron-builder -m --dir",
"dist": "run-s dist:*",
"dist:mac": "electron-builder -m --x64",
"dist:win": "electron-builder -w --x64",
"dist:linux": "electron-builder -l --x64",
"clean": "del lib/* dist/*",
"update": "run-s update:check update:install update:commit",
"update:check": "updates -u",
"update:install": "yarn install",
"update:commit": "git commit -m \"chore: update dependencies\" -- package.json yarn.lock"
},
"author": "StoreWise <[email protected]> (https://storewise.tech/)",
"contributors": [
"Junpei Kawamoto <[email protected]> (https://www.jkawamoto.info/)"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/storewise/file-share-desktop.git"
},
"bugs": {
"url": "https://github.com/storewise/file-share-desktop/issues"
},
"homepage": "https://github.com/storewise/file-share-desktop",
"dependencies": {
"about-window": "^1.13.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"del-cli": "^3.0.0",
"electron": "^8.2.2",
"electron-builder": "^22.5.1",
"electron-log": "^4.1.1",
"electron-updater": "^4.2.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"npm-package-json-lint": "^5.0.0",
"npm-package-json-lint-config-default": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"svg-url-loader": "^5.0.0",
"updates": "^10.2.7",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"yaml-lint": "^1.2.4"
}
}