-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.29 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
{
"name": "interkm",
"version": "0.0.3",
"description": "Client application for read/write rw1990 keys",
"author": {
"name": "Stanislav Tamat",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://yokitoki.github.io/interkm",
"scripts": {
"start": "electron-webpack dev",
"compile": "electron-webpack",
"build:windows": "yarn compile && electron-builder --win --x64",
"build:linux": "yarn compile && electron-builder --linux",
"build:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"build:clean": "rm -rf dist/ && rm -rf release/",
"build:deps": "electron-builder install-app-deps",
"build:publish": "electron-builder --publish onTag"
},
"electronWebpack": {
"commonDistDirectory": "dist",
"commonSourceDirectory": "src/common",
"main": {
"sourceDirectory": "src/main"
},
"renderer": {
"sourceDirectory": "src/renderer",
"webpackConfig": "src/renderer/config/webpack.config.js",
"template": "src/renderer/public/index.html"
}
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
]
},
"build": {
"productName": "interkm",
"appId": "io.github.yokitoki",
"publish": {
"provider": "github"
},
"win": {
"target": [
"portable"
]
},
"linux": {
"target": [
"tar.gz",
"deb",
"appImage"
],
"category": "Development"
},
"directories": {
"buildResources": "resources",
"output": "release"
}
},
"dependencies": {
"bcrypt": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"serialport": "^8.0.7",
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"electron": "7.1.13",
"electron-builder": "^22.3.2",
"electron-webpack": "^2.7.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.17.0",
"prettier-eslint": "^8.8.2",
"webpack": "^4.41.6"
},
"devEngines": {
"node": ">=10.16.0",
"npm": ">=6.9.0",
"yarn": ">=1.22.0"
}
}