-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "newsdash",
"description": "A news dashboard inspired by iGoogle and Netvibes",
"version": "1.0.2",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"keywords": [
"feedreader",
"news",
"rss",
"webapp"
],
"author": {
"name": "buzz",
"url": "https://github.com/buzz"
},
"homepage": "https://github.com/buzz/newsdash",
"repository": {
"type": "git",
"url": "https://github.com/buzz/newsdash.git"
},
"scripts": {
"build": "pnpm run common:build && pnpm run server:build && pnpm run client:build",
"client:build": "pnpm run --filter @newsdash/client build",
"client:dev": "pnpm run --filter @newsdash/client dev",
"common:build": "pnpm run --filter @newsdash/common build",
"common:dev": "pnpm run --filter @newsdash/common dev",
"dev": "pnpm run /:dev$/",
"lint": "eslint .",
"server:build": "pnpm run --filter @newsdash/server build",
"server:dev": "pnpm run --filter @newsdash/server dev",
"server:start": "pnpm run --filter @newsdash/server start",
"start": "pnpm run server:start",
"typecheck": "pnpm run --filter '*' typecheck"
},
"eslintIgnore": [
"/packages/client/dist"
],
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.7.0",
"eslint": "^9.7.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "5.1.0-rc-cc1ec60d0d-20240607",
"eslint-plugin-react-redux": "^4.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^54.0.0",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.17.0"
},
"packageManager": "[email protected]",
"pnpm": {
"supportedArchitectures": {
"cpu": [
"x64"
],
"os": [
"linux"
],
"libc": [
"glibc",
"musl"
]
}
}
}