-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"name": "github-toolkit",
"version": "1.0.0",
"description": "A comprehensive GitHub toolkit with Next.js frontend and Flask api",
"private": true,
"scripts": {
"flask-dev": "pip install -r requirements.txt && python -m flask --app api/index run -p 5328",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run flask-dev\"",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"qa": "npm run lint && npm run type-check && npm run format:check",
"prepare": "husky install"
},
"dependencies": {
"autoprefixer": "^10.5.2",
"axios": "^1.18.1",
"chart.js": "^4.5.1",
"concurrently": "^10.0.3",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"postcss": "^8.5.16",
"react": "19.2.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.7",
"tailwindcss": "^4.3.2"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "26.1.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"baseline-browser-mapping": "^2.10.37",
"eslint": "^10.6.0",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"typescript": "6.0.3"
},
"resolutions": {
"minimatch": "^9.0.6",
"picomatch": "^2.3.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
}
}