-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "learning",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.3"
},
"peerDependencies": {
"typescript": "^5"
},
"catalog": {
"@solidjs/router": "^0.15.4",
"@solidjs/start": "^1.3.2",
"es-toolkit": "^1.44.0",
"solid-js": "^1.9.11",
"valibot": "^1.2.0"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"codegen": "turbo run codegen",
"dev": "turbo run dev",
"lint": "turbo run lint && prettier . --write",
"lint:check": "turbo run lint:check && bun run prettier . --check",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"workspaces": [
"apps/**",
"content/**",
"packages/**"
]
}