-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "tasky",
"version": "0.1.0",
"private": true,
"description": "Local-first PWA todo app",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm --filter web build",
"preview": "pnpm --filter web preview",
"type-check": "pnpm -r type-check",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"test:ui": "pnpm --filter web test:ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"keywords": [
"todo",
"pwa",
"crdt",
"local-first"
],
"engines": {
"node": ">=25",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.20.0",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/ui": "^4.0.13",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"vitest": "^4.0.13",
"ws": "^8.18.3",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27"
}
}