forked from onlook-dev/onlook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.79 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.79 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@onlook/repo",
"version": "0.0.0",
"description": "Onlook Monorepo",
"homepage": "https://onlook.com",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Onlook",
"email": "[email protected]"
},
"workspaces": [
"packages/*",
"apps/*",
"tooling/*",
"apps/web/*",
"docs"
],
"scripts": {
"build": "bun --filter @onlook/web build:client",
"start": "bun --filter @onlook/web start:client",
"dev": "bun --filter @onlook/web dev",
"test": "bun --filter '*' test",
"docs": "bun --filter @onlook/docs dev",
"backend:start": "bun --filter @onlook/backend start",
"db:gen": "bun --filter @onlook/db db:gen",
"db:push": "bun --filter @onlook/db db:push",
"db:seed": "bun --filter @onlook/db db:seed",
"db:migrate": "bun --filter @onlook/db db:migrate",
"format": "bun --filter '*' format",
"lint": "bun --filter @onlook/web-client lint",
"typecheck": "bun --filter '*' typecheck",
"prepare": "husky",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "bun --filter '*' clean",
"setup:env": "bun --filter @onlook/scripts build && bun packages/scripts/dist/index.js",
"increment_tag": "./scripts/increment_tag.sh",
"publish_tag": "./scripts/publish_tag.sh",
"remove_tag": "./scripts/remove_tag.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlook-dev/onlook.git"
},
"bugs": {
"url": "https://github.com/onlook-dev/onlook/issues"
},
"devDependencies": {
"extract-zip": "^2.0.1",
"husky": "^9.1.6"
},
"dependencies": {},
"packageManager": "[email protected]"
}