-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
{
"name": "midi-to-keypress",
"version": "0.2.0",
"private": true,
"description": "App for converting midi to key presses. Built with Electron and React.",
"author": "davidlukerice",
"productName": "MIDI to Keypress",
"main": "electron/main.js",
"homepage": "./",
"scripts": {
"start": "npm run start:win",
"start:win": "react-scripts start",
"start:mac": "react-scripts start",
"start-electron": "npm run start-electron:win",
"start-electron:win": "set ELECTRON_START_URL=http://localhost:3000 & electron .",
"build": "react-scripts build",
"build-electron": "npm run build-electron:win",
"build-electron:win": "mkdir build/src & robocopy electron build/electron /S & robocopy src/shared build/src/shared /S",
"build-electron:mac": "mkdir build/src && cp -r electron/. build/electron && cp -r src/shared/. build/src/shared",
"package": "electron-builder build --win -c.extraMetadata.main=build/electron/main.js --publish never",
"package:with-mac": "electron-builder build --mac --win -c.extraMetadata.main=build/electron/main.js --publish never",
"rebuild-robotjs": "npm rebuild --runtime=electron --target=9.0.3 --disturl=https://atom.io/download/atom-shell --abi=83",
"test": "react-scripts test"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"electron": "^9.3.1",
"electron-builder": "^22.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"electron-store": "^5.2.0",
"emotion-theming": "^10.0.27",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-json-view": "^1.19.1",
"react-scripts": "3.4.1",
"robotjs": "git+https://github.com/octalmage/robotjs.git#master",
"smooth-scroll-into-view-if-needed": "^1.1.28",
"webmidi": "^2.5.1"
},
"build": {
"files": [
"build/**/*",
"node_modules/**/*"
],
"publish": {
"provider": "github",
"repo": "midi-to-keypress",
"owner": "davidlukerice"
}
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}