forked from refly-ai/refly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.32 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "refly-monorepo",
"description": "Refly AI Monorepo",
"version": "0.8.0",
"private": true,
"engines": {
"pnpm": ">=9",
"node": ">=20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/refly-ai/refly.git"
},
"scripts": {
"commit": "cz",
"dev": "turbo run dev",
"start": "turbo run start",
"build": "turbo run build",
"build:api": "turbo run build --filter=@refly/api",
"build:api:fast": "turbo run build:fast --filter=@refly/api",
"build:web": "turbo run build --filter=@refly/web",
"copy-package-dist": "node scripts/copy-package-dist.js",
"copy-env": "turbo run copy-env",
"copy-env:develop": "turbo run copy-env:develop",
"codegen": "turbo run codegen",
"clean": "turbo run clean",
"clean:node-modules": "node scripts/cleanup-node-modules.js",
"cy:open": "cypress open",
"cy:install": "cypress install",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write",
"test": "pnpm -r --if-present test",
"test:unit": "pnpm -r --if-present test:unit",
"test:integration": "pnpm -r --if-present test:integration",
"i18n:check": "node scripts/check-i18n-consistency.js",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "20.19.0",
"commitizen": "^4.2.4",
"cypress": "14.0.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "~16.4.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"minio": "7.1.3",
"ncp": "^2.0.0",
"nodemon": "~3.1.7",
"rimraf": "^5.0.10",
"turbo": "^2.1.2",
"typescript": "5.3.3",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@9.15.9",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "biome check --write --unsafe --no-errors-on-unmatched"
},
"pnpm": {
"overrides": {
"node-abi": "4.9.0",
"prosemirror-model": "1.25.2",
"yjs": "13.6.16",
"zod": "3.25.76",
"zod-to-json-schema": "3.24.6",
"zod-validation-error": "3.4.1"
}
},
"dependencies": {
"@composio/core": "^0.2.4",
"browser-use-sdk": "^2.0.4"
}
}