-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "layne",
"version": "1.1.1",
"description": "Centralized appsec scanning GitHub App",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"start": "node src/server.js",
"worker": "node src/worker.js",
"dev:redis": "docker compose -f docker-compose.dev.yml up -d",
"dev:stop": "docker compose -f docker-compose.dev.yml down",
"replay": "node scripts/replay-webhook.js",
"validate-config": "node scripts/validate-config.js",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset tag",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "npm --prefix website run start",
"docs:build": "npm --prefix website run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"bullmq": "^5.0.0",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"ioredis": "^5.0.0",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"supertest": "^7.0.0",
"vitest": "^4.0.18"
}
}