-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 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
{
"name": "laverna-desktop",
"license": "MPL-2.0",
"author": "Laverna team",
"version": "0.7.4",
"description": "Note-taking app",
"main": "index.js",
"homepage": "https://laverna.cc",
"wikipage": "https://github.com/Laverna/laverna/wiki",
"repository": {
"type": "git",
"url": "https://github.com/Laverna/laverna-desktop"
},
"bugs": {
"url": "https://github.com/Laverna/laverna/issues",
"email": "lavernaproject@gmail.com"
},
"scripts": {
"start": "electron .",
"debug": "electron . --dev --enable-logging",
"setup": "npm install && npm run ui:setup",
"build": "npm run ui:refresh && node res/build",
"linux": "node res/build/linux.js",
"release": "NODE_ENV=release npm run build",
"ui:setup": "npm run ui:install && npm run ui:build",
"ui:refresh": "npm run ui:pull && npm run ui:build",
"ui:build": "cd ./ui-src && gulp build --distDir='../app/ui' && cd ../",
"ui:install": "npm run ui:clone && npm run ui:install:deps",
"ui:clone": "git clone https://github.com/Laverna/laverna.git -b dev ./ui-src",
"ui:pull": "rm -rf ./app/ui && cd ./ui-src && git pull origin dev && cd ../",
"ui:install:deps": "cd ./ui-src && npm install && cd ../",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"electron-context-menu": "^0.9.1",
"electron-window-state": "^4.1.1",
"underscore": "^1.8.3",
"yargs": "^10.1.1"
},
"devDependencies": {
"electron": "^1.7.10",
"electron-packager": "^10.1.1"
}
}