-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "brainbox",
"description": "Brainbox monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/brainbox/brainbox"
},
"packageManager": "npm@10.9.0",
"scripts": {
"compile": "turbo run compile",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"setup-worktree": "node setup-worktree.js",
"watch": "turbo watch build --filter=@brainbox/{core,crdt,server}",
"lint": "turbo run lint --parallel",
"test": "turbo run test -- --watch false",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"postinstall": "node --no-warnings --loader ts-node/esm scripts/src/postinstall/index.ts"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/debug": "^4.1.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"turbo": "^2.5.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"debug": "^4.4.1",
"lodash-es": "^4.17.21",
"lucide": "^0.541.0",
"lucide-react": "^0.541.0"
}
}