forked from Dushyant-rahangdale/OpsKnight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 5.96 KB
/
Copy pathpackage.json
File metadata and controls
168 lines (168 loc) · 5.96 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "opsknight",
"version": "1.0.0",
"description": "Professional Open-Source Incident Management Platform for SREs and DevOps teams.",
"keywords": [
"incident-management",
"on-call",
"schedules",
"escalation-policies",
"status-page",
"sre",
"devops",
"monitoring",
"alerts"
],
"author": "Dushyant Rahangdale",
"license": "Apache-2.0",
"homepage": "https://github.com/dushyant-rahangdale/opsknight",
"repository": {
"type": "git",
"url": "git+https://github.com/dushyant-rahangdale/opsknight.git"
},
"bugs": {
"url": "https://github.com/dushyant-rahangdale/opsknight/issues"
},
"private": false,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "node .next/standalone/server.js",
"start:dev": "next start",
"start:prod": "NODE_ENV=production node .next/standalone/server.js",
"lint": "eslint . --max-warnings 100",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run",
"test:ci": "npx vitest run --no-file-parallelism --maxWorkers=1 --reporter=default --reporter=junit --outputFile=reports/junit.xml",
"test:unit": "vitest run -c vitest.unit.config.ts",
"test:int": "vitest run -c vitest.int.config.ts --no-file-parallelism",
"test:ci:unit": "npx vitest run -c vitest.unit.config.ts --no-file-parallelism --maxWorkers=1 --reporter=default --reporter=junit --outputFile=reports/junit-unit.xml",
"test:ci:db": "npx vitest run -c vitest.int.config.ts --no-file-parallelism --maxWorkers=1 --reporter=default --reporter=junit --outputFile=reports/junit-db.xml",
"test:all": "npm run lint:check && npm run test:run",
"OpsKnight": "node ./scripts/OpsKnight.mjs",
"ops": "node ./scripts/OpsKnight.mjs",
"build:scripts": "tsc scripts/auto-recover-migrations.ts --outDir scripts/dist --module commonjs --target es2020 --esModuleInterop --skipLibCheck",
"backfill:action-items": "ts-node --project tsconfig.script.json scripts/backfill-action-items.ts",
"prisma:validate": "node scripts/validate-migrations.cjs",
"prisma:health": "node scripts/check-migration-health.cjs",
"prisma:auto-recover": "node --loader ts-node/esm scripts/auto-recover-migrations.ts",
"prisma:migrate:safe": "npm run prisma:validate && npm run prisma:health && npx prisma migrate deploy",
"prepare": "husky install",
"security:check": "npm audit && npm run lint:check",
"lint:report": "eslint . --format @microsoft/eslint-formatter-sarif --output-file reports/security.sarif",
"docs:sync": "scripts/sync-docs-to-website.sh"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.971.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ducanh2912/next-pwa": "^10.2.9",
"@hookform/resolvers": "^5.2.2",
"@opentelemetry/api": "^1.9.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/web-push": "^3.6.4",
"@vvo/tzdb": "^6.198.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"csv-stringify": "^6.6.0",
"date-fns": "^4.1.0",
"exceljs": "^4.4.0",
"file-saver": "^2.0.5",
"framer-motion": "^12.29.0",
"lucide-react": "^0.562.0",
"next": "^16.1.0",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.70.0",
"recharts": "^3.6.0",
"sonner": "^2.0.7",
"source-map-js": "^1.2.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"web-push": "^3.6.7",
"web-vitals": "^5.1.0",
"zod": "^3.25.76"
},
"optionalDependencies": {
"@aws-sdk/client-sns": "^3.971.0",
"@sendgrid/mail": "^8.1.6",
"nodemailer": "7.0.12",
"resend": "^4.0.0",
"twilio": "^5.11.1"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@playwright/test": "^1.58.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^16.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"aria-query": "^5.3.2",
"autoprefixer": "^10.4.23",
"cssnano": "^7.1.2",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-security": "^3.0.1",
"eslint-visitor-keys": "^5.0.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"tldts": "^7.0.19",
"ts-node": "^10.9.1",
"typescript": "^5",
"vitest": "^4.0.16"
},
"bin": {
"OpsKnight": "./scripts/OpsKnight.mjs"
},
"prisma": {
"seed": "ts-node --project tsconfig.seed.json prisma/seed.ts"
},
"overrides": {
"fast-xml-parser": "^5.3.4",
"eslint": "$eslint"
}
}