-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "article-saver",
"productName": "Article Saver",
"version": "1.1.1",
"description": "A desktop application for saving and reading articles, similar to Pocket",
"main": "index.js",
"scripts": {
"dev": "./scripts/start-dev.sh",
"dev:desktop": "cd desktop && npm run dev",
"dev:backend": "cd backend && npm run dev",
"stop": "./scripts/stop-dev.sh",
"health": "./scripts/health-check.sh",
"build:desktop": "cd desktop && npm run build",
"build:backend": "cd backend && npm run build",
"install:all": "npm install && cd desktop && npm install && cd ../backend && npm install",
"test": "echo 'Tests run in individual workspaces' && exit 0"
},
"keywords": [
"article",
"reader",
"pocket",
"electron",
"desktop"
],
"author": "Article Saver Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nilukush/article_saver.git"
},
"bugs": {
"url": "https://github.com/nilukush/article_saver/issues"
},
"homepage": "https://github.com/nilukush/article_saver#readme",
"workspaces": [
"desktop",
"backend"
]
}