forked from Dygmalab/Bazecor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.57 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "BAZECOR",
"version": "0.2.2",
"license": "GPL-3.0-only",
"author": {
"name": "DygmaLab SE",
"email": "[email protected]"
},
"homepage": "https://github.com/Dygmalab/Bazecor",
"scripts": {
"preinstall": "node tools/preinstall.js",
"postinstall": "electron-builder install-app-deps",
"start": "electron-webpack dev",
"compile": "electron-webpack",
"build:all": "npm-run-all compile --parallel 'electron-builder -m' 'electron-builder -w' 'electron-builder -l'",
"build:osx": "yarn compile && electron-builder -m",
"build:mac": "yarn run build:osx",
"build:windows": "yarn compile && electron-builder -w",
"build:win": "yarn run build:windows",
"build:linux": "yarn compile && electron-builder -l",
"prettier": "prettier --write \"src/**/*.{js,json,css,scss,md}\"",
"lint:all": "npm-run-all lint:js lint:css",
"lint:js": "eslint src/**/*.js",
"lint:css": "stylelint \"src/**/*.js src/**/*.css\"",
"clean:code": "npm-run-all prettier lint:all",
"test": "ELECTRON_RUN_AS_NODE=true ./node_modules/.bin/electron ./node_modules/.bin/jest",
"test:watch": "jest --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -p lint:all"
}
},
"build": {
"appId": "dygmalab.bazecor",
"productName": "Bazecor",
"artifactName": "${productName}-${version}.${ext}",
"copyright": "Copyright © 2018, 2019 Keyboardio Inc.; Copyright © 2018, 2019 DygmaLab SE; distributed under the GPLv3",
"mac": {
"darkModeSupport": true
},
"linux": {
"target": [
"AppImage"
]
},
"afterPack": "./build/afterPackHook.js",
"extraResources": [
{
"from": "./build/launcher.sh",
"to": "launcher.sh"
},
"static"
]
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.30",
"@reach/router": "^1.2.1",
"classnames": "^2.2.6",
"electron-devtools-installer": "^2.2.4",
"electron-settings": "^3.2.0",
"electron-store": "^6.0.0",
"electron-window-state": "^5.0.3",
"notistack": "^0.9.7",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-color": "^2.14.1",
"react-dom": "16.8.5",
"react-localization": "^1.0.13",
"serialport": "^8.0.7",
"source-map-support": "^0.5.16",
"terser": "^4.6.3",
"typeface-roboto": "^0.0.54",
"typeface-source-code-pro": "^0.0.71",
"usb": "^1.6.2"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.2",
"electron": "7.1.12",
"electron-builder": "^22.3.2",
"electron-webpack": "^2.7.4",
"electron-webpack-eslint": "^4.0.1",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.2",
"jest": "^24.5.0",
"jest-dom": "^3.1.3",
"jscs": "^3.0.7",
"lint-staged": "^8.1.5",
"npm-run-all": "^4.1.3",
"prettier": "^1.16.4",
"react-testing-library": "^6.0.3",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.41.6",
"yarn": "^1.22.0"
},
"resolutions": {}
}