This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "keyboardio-led-custom-palette",
"version": "1.1.0",
"license": "MIT",
"author": {
"name": "Jakub Beneš",
"email": "[email protected]"
},
"homepage": "https://github.com/jukben/keyboardio-led-custom-palette",
"scripts": {
"test": "jest",
"start": "electron-webpack dev",
"compile": "electron-webpack",
"build:mac": "yarn compile && electron-builder -m",
"build:win": "yarn compile && electron-builder -w",
"build:linux": "yarn compile && electron-builder -l"
},
"build": {
"appId": "com.jukben.lcp",
"productName": "LED Custom Palette",
"copyright": "Copyright © 2018 Jakub Beneš, distributed under MIT license"
},
"dependencies": {
"@babel/core": "7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.47",
"@babel/preset-env": "7.0.0-beta.47",
"@babel/preset-react": "7.0.0-beta.47",
"@babel/runtime": "7.0.0-beta.47",
"babel-loader": "^7.1.5",
"most": "^1.7.3",
"ramda": "^0.25.0",
"react": "^16.4.2",
"react-color": "^2.14.1",
"react-dom": "^16.4.2",
"serialport": "^6.2.2",
"source-map-support": "^0.5.5",
"styled-components": "^3.4.1"
},
"devDependencies": {
"@jukben/eslint-config": "^0.0.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"electron": "2.0.0",
"electron-builder": "^20.11.1",
"electron-webpack": "^2.0.1",
"eslint": "^5.4.0",
"jest": "^23.4.2",
"webpack": "^4.8.1"
},
"jest": {
"testEnvironment": "node"
}
}