forked from frytyler/react-menubar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "react-menubar",
"version": "0.0.1",
"description": "A Skeleton Menu Bar App in React",
"main": "./dist/index.js",
"license": "MIT",
"private": false,
"author": "Tyler Fry <fry.tyler@gmail.com>",
"scripts": {
"start": "electron .",
"watch:electron": "parcel watch index.js --target=electron",
"watch:react": "parcel watch main.js --target=node",
"watch": "concurrently \"yarn watch:electron\" \"yarn watch:react\" "
},
"dependencies": {
"auto-launch": "^5.0.5",
"concurrently": "^3.5.1",
"dotenv": "^5.0.1",
"menubar": "^5.2.3",
"react-gif-search": "0.0.5",
"styled-components": "^3.2.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"electron": "^1.8.3",
"parcel-bundler": "^1.6.2",
"prettier": "^1.11.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}