-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "statuspage",
"version": "0.0.1",
"private": true,
"description": "Monorepo for a Cloudflare based Statuspage. ",
"author": "Jan Stubenrauch <[email protected]>",
"license": "MIT",
"homepage": "http(s)://stubijs.github.io/statuspage",
"keywords": [
"cloudflare",
"vite",
"vue",
"vue.js",
"vue3",
"cloudflare worker",
"cloudflare pages"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"unit": "vitest run",
"unit:test": "vitest",
"unit:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "npm-run-all tsc:*",
"tsc:status-worker": "pnpm --dir ./packages/status-worker/ ts-check",
"tsc:status-page": "pnpm --dir ./packages/status-page/ ts-check",
"tsc:locations": "pnpm --dir ./packages/locations/ ts-check",
"tsc:status-page/cypress": "tsc --noEmit -p ./packages/status-page/cypress/ && echo ok || echo not ok",
"taze:patch": "npx taze patch -r",
"taze:patch:w": "npx taze patch -r -w",
"taze:minor": "npx taze minor -r",
"taze:minor:w": "npx taze minor -r -w",
"taze:major": "npx taze major -r",
"taze:major:w": "npx taze major -r -w"
},
"devDependencies": {
"@antfu/eslint-config": "0.43.1",
"c8": "7.14.0",
"eslint": "8.57.1",
"eslint-plugin-cypress": "2.15.2",
"jsdom": "21.1.2",
"lint-staged": "13.3.0",
"npm-run-all": "4.1.5",
"simple-git-hooks": "2.11.1",
"typescript": "4.9.5",
"vitest": "0.34.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,yaml,toml}": "eslint --fix",
"*.{json}": "eslint --fix"
}
}