-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "meteor-electron-nightmare",
"version": "1.0.0",
"description": "Meteor app that builds the client part and loaded with electron's file:// protocol. proof of concept",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"start-dev": "start npm run meteor && npm run electron-dev",
"meteor": "(cd meteor-app && meteor --settings settings.json)",
"electron-dev": "nodemon --ignore meteor-app/ --exec npm run electron",
"electron": "electron main.js dev",
"rebuild": "electron-rebuild -p"
},
"repository": {
"type": "git",
"url": "https://github.com/rickmed/meteor-electron-nightmare"
},
"author": "Ricardo Medina",
"license": "ISC",
"bugs": {
"url": "NA"
},
"dependencies": {
"nightmare-meteor": "^2.4.2"
},
"devDependencies": {
"electron-packager": "^7.0.1",
"nodemon": "^1.9.2"
}
}