-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"name": "telar",
"version": "0.0.0",
"private": true,
"description": "Telar — Design System en Vue 3 + Tejido (app de referencia). Monorepo.",
"author": "Fabián Rubio",
"packageManager": "pnpm@11.8.0",
"engines": {
"node": ">=22.13"
},
"type": "module",
"scripts": {
"dev": "turbo run dev --filter=@telar/app",
"build": "turbo run build",
"tokens": "turbo run tokens",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,vue,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,vue,json,md}\"",
"size": "size-limit",
"lighthouse": "lhci autorun",
"e2e": "pnpm -C packages/app e2e",
"e2e:open": "pnpm -C packages/app e2e:open",
"changeset": "changeset",
"emulators": "firebase emulators:start --only firestore,auth,functions --project demo-telar",
"emulators:seed": "pnpm -C functions seed",
"version-packages": "changeset version",
"release": "turbo run build --filter=@telar/ds && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.17.0",
"@lhci/cli": "^0.14.0",
"@size-limit/file": "^11.1.0",
"@types/node": "^22.10.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"prettier": "^3.4.0",
"size-limit": "^11.1.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vue-eslint-parser": "^9.4.3"
}
}