-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 KB
/
package.json
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
{
"name": "teds",
"description": "Typed event broker",
"repository": {
"url": "https://github.com/valtyr/teds"
},
"version": "0.0.0",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"publish-packages": "turbo run build lint test && changeset version && pnpm run ci:publish",
"ci:publish": "pnpm publish -r --access public",
"edit": "code ."
},
"dependencies": {
"turbo": "^1.10.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"prettier": "^2.8.4",
"typescript": "5.1.3"
},
"packageManager": "[email protected]",
"prettier": {
"importOrder": [
"^\\./env$",
"<THIRD_PARTY_MODULES>",
"^~/.*$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
}
}