-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
47
48
{
"name": "echo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"ci": "yarn typecheck && yarn lint && yarn format",
"dev": "vite",
"build": "yarn workspace @echo/web tsc && vite build --emptyOutDir",
"format": "prettier --check \"packages/**/*.{ts, tsx}\"",
"gen": "yarn plop",
"lint": "yarn workspaces run lint",
"preview": "yarn workspace @echo/web vite preview",
"test": "vitest",
"typecheck": "yarn workspaces run typecheck",
"prepare": "husky",
"setup": "node ./tools/certificates/generate-certificates.js"
},
"dependencies": {
"@effect/schema": "^0.71.1",
"effect": "^3.8.3"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-wc": "^2.1.1",
"husky": "~9.0.11",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.4.8",
"vitest": "^2.1.3"
},
"workspaces": [
"packages/*",
"packages/components/*",
"packages/core/*",
"packages/infrastructure/*",
"packages/services/*",
"packages/workflows/*",
"packages/workers/*"
]
}