-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "hermes-monitor",
"version": "0.1.0",
"private": true,
"bin": {
"hermes-monitor": "./bin/hermes-monitor.js"
},
"workspaces": [
"shared",
"server",
"client",
"e2e"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev -w server",
"dev:client": "npm run dev -w client",
"build": "npm run build -w client && npm run build -w server",
"test": "npm run test -w server && npm run test -w client",
"test:server": "npm run test -w server",
"test:client": "npm run test -w client",
"test:e2e": "npm run test -w e2e",
"setup:worktree": "bash scripts/setup-worktree.sh",
"prepare": "husky",
"lint": "echo \"No eslint configured yet \u2014 add eslint.config.js\"",
"typecheck": "tsc --noEmit -p server/tsconfig.json && tsc --noEmit -p client/tsconfig.json"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.2"
},
"lint-staged": {}
}