-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 822 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": "sounddocs",
"private": true,
"version": "2.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"agents/*",
"models/*",
"tools/*"
],
"scripts": {
"dev": "pnpm --filter @sounddocs/web dev",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"preview": "pnpm --filter @sounddocs/web preview",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "3.5.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1"
},
"dependencies": {
"localforage": "^1.10.0"
}
}