-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.06 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
{
"name": "pr-approval-finder",
"version": "8.0.0",
"description": "🔍 Analyze GitHub Pull Requests to determine minimum required approvals based on CODEOWNERS files",
"main": "index.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"install:all": "npm ci && cd client && npm ci && cd ../server && npm ci",
"clean": "rm -rf node_modules client/node_modules server/node_modules client/build",
"clean:install": "npm run clean && npm run install:all",
"lint": "concurrently \"cd client && npm run lint\" \"cd server && npm run lint\"",
"lint:fix": "concurrently \"cd client && npm run lint:fix\" \"cd server && npm run lint:fix\"",
"format": "concurrently \"cd client && npm run format\" \"cd server && npm run format\"",
"format:check": "concurrently \"cd client && npm run format:check\" \"cd server && npm run format:check\"",
"code:fix": "npm run format && npm run lint:fix",
"test": "concurrently \"cd client && npm test -- --watchAll=false\" \"cd server && npm test\"",
"test:watch": "concurrently \"cd client && npm run test\" \"cd server && npm run test:watch\"",
"test:coverage": "concurrently \"cd client && npm test -- --coverage --watchAll=false\" \"cd server && npm run test -- --coverage\"",
"pre-commit": "npm run sync-version && npm run format && npm run lint && npm run test",
"prepare": "husky install",
"docker:build": "docker build -t pr-approval-finder .",
"docker:run": "docker run -p 3000:3000 pr-approval-finder",
"docker:dev": "docker-compose up --build",
"vercel:dev": "vercel dev",
"vercel:deploy": "vercel --prod",
"sync-version": "node scripts/sync-version.js",
"sync-version-manual": "node scripts/sync-version.js && echo '\\n🔧 Manual sync complete. Run git commit to proceed with your changes.'"
},
"keywords": [
"github",
"pull-request",
"pr",
"approval",
"codeowners",
"code-review",
"analysis",
"developer-tools",
"react",
"nodejs",
"open-source"
],
"author": {
"name": "Aswin",
"email": "contact@aswincloud.com",
"url": "https://github.com/Aswin-coder"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Aswin-coder/pr-review-checker.git"
},
"bugs": {
"url": "https://github.com/Aswin-coder/pr-review-checker/issues"
},
"homepage": "https://pr-reviewer.aswincloud.com",
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.2"
},
"dependencies": {
"axios": "^1.10.0",
"minimatch": "^10.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}