-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.51 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
{
"name": "tradeshell-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky",
"lint": "xo packages/cli/",
"format": "prettier --write .",
"check-types": "bun run --filter '*' check-types",
"build": "bun run --filter '*' build",
"logs": "tail -F ~/.tradeshell/debug.1.log | bunx pino-pretty -t 'HH:MM:ss' --ignore pid,hostname,context --messageFormat '({context}) {msg}'"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@vdemedes/prettier-config": "^2.0.1",
"eslint": "^9.18.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"xo": "^0.60.0"
},
"xo": {
"extends": "xo-react",
"space": false,
"ignores": [
"**/dist/**",
"**/node_modules/**",
"**/coverage/**"
],
"rules": {
"react/prop-types": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "variable",
"modifiers": [
"const"
],
"format": [
"strictCamelCase",
"UPPER_CASE",
"StrictPascalCase"
]
}
]
}
},
"lint-staged": {
"packages/cli/**/*.{ts,tsx}": [
"cd packages/cli && prettier --check",
"cd packages/cli && xo"
],
"packages/core/**/*.ts": [
"cd packages/core && prettier --check"
]
},
"dependencies": {
"@trpc/client": "^11.10.0",
"@trpc/server": "^11.10.0",
"pino-roll": "^4.0.0"
}
}