-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 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
{
"name": "pulp",
"version": "1.0.0",
"description": "Self-hosted reader app for Obsidian literature notes",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev:server & npm run dev:web & wait",
"dev:server": "npm run dev -w @pulp/server",
"dev:web": "npm run dev -w @pulp/web",
"build": "npm run build -w @pulp/shared && npm run build -w @pulp/server && npm run build -w @pulp/web",
"test": "npm run test --workspaces --if-present",
"test:e2e": "playwright test",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"typecheck": "npm run typecheck -w @pulp/shared && npm run typecheck -w @pulp/server && npm run typecheck -w @pulp/web"
},
"devDependencies": {
"@playwright/test": "^1.41.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^7.0.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}