-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.18 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
{
"name": "adigunners-github-io",
"version": "1.0.6",
"description": "IIM Mumbai Fantasy Premier League - Automated fantasy football league management system",
"private": true,
"scripts": {
"dev": "python3 -m http.server 3000",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky",
"check-consistency": "node scripts/check-consistency.js",
"fix-winners": "node scripts/fix-winners.js",
"lint:md": "markdownlint-cli2",
"audit:index": "lighthouse http://localhost:${PORT:-8000} --output html --output json --quiet --chrome-flags=\"--headless\" --output-path ./tests/integration/performance/reports/lighthouse-index",
"audit:winners": "lighthouse http://localhost:${PORT:-8000}/winners.html --output html --output json --quiet --chrome-flags=\"--headless\" --output-path ./tests/integration/performance/reports/lighthouse-winners",
"audit": "npm run audit:index && npm run audit:winners",
"twemoji:fetch": "node scripts/fetch-twemoji.js",
"twemoji:rules": "node scripts/fetch-twemoji.js 1f4c3",
"agentos": "node .codex/bin/agentos.js",
"spec:new": "node .codex/bin/new-spec.js",
"spec:tasks": "node .codex/bin/new-tasks.js",
"codex:date": "node .codex/bin/date-checker.js",
"codex:new": "node .codex/bin/codex-workflow.js",
"version:apply": "node scripts/set-version.js",
"build": "node scripts/build.js"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"husky": "^9",
"lighthouse": "^12.8.2",
"lint-staged": "^15",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.{html,css,js,json}": [
"prettier --write"
],
"*.{md,mdx}": [
"prettier --write",
"markdownlint-cli2 --fix"
]
},
"keywords": [
"fantasy-football",
"premier-league",
"automation",
"github-pages"
],
"author": "Aditya Garg <aditya.garg.2006@gmail.com>",
"contributors": [
"Devyanshi Garg",
"Saurabh Sarin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adigunners/adigunners.github.io.git"
},
"homepage": "https://adigunners.github.io"
}