-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.28 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.28 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
{
"name": "photosphere-monorepo",
"version": "1.0.0",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/ashleydavis/photosphere.git"
},
"bugs": {
"url": "https://github.com/ashleydavis/photosphere/issues"
},
"description": "This monorepo contains the backend and frontend for [the Photosphere application](https://rapidfullstackdevelopment.com/example-application).",
"homepage": "https://github.com/ashleydavis/photosphere#readme",
"keywords": [],
"license": "MIT",
"scripts": {
"c": "bun run compile",
"compile": "bun --filter '*' compile",
"clean": "bun --filter '*' clean",
"test": "bun --filter '*' test",
"test:watch": "bun --filter '*' test:watch",
"t": "bun run test",
"tw": "bun run test:watch",
"dev": "bun run bundle:renderer && bun run --filter=photosphere dev",
"d": "bun run dev",
"build": "bun run bundle:renderer && bun run --filter=photosphere build",
"bundle:main": "bun run --filter=photosphere bundle",
"bundle:renderer": "bun run --filter=desktop-frontend bundle",
"bundle": "bun run bundle:main && bun run bundle:renderer",
"test:smoke": "bun run build && bun run --filter=photosphere test:smoke"
},
"workspaces": [
"apps/*",
"packages/*",
"aux/*"
]
}