-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 957 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 957 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
{
"name": "uptimer",
"private": true,
"version": "0.1.0",
"license": "MIT",
"packageManager": "pnpm@10.8.1",
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"dev": "pnpm dev:init && pnpm dev:start",
"dev:init": "pnpm --filter @uptimer/worker init:local",
"dev:start": "pnpm -r --parallel --filter @uptimer/worker --filter @uptimer/web dev",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r --if-present test",
"test:coverage": "pnpm --filter @uptimer/worker test",
"format": "prettier -w .",
"format:check": "prettier -c ."
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0"
}
}