-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.22 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.22 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
{
"name": "github-rank",
"description": "Github Global User Ranking, Global Warehouse Star Ranking (Github Action is automatically updated daily).",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Dmitrii Selikhov",
"email": "dmitrii.selikhov@gmail.com",
"url": "https://github.com/idimetrix"
},
"repository": {
"type": "git",
"url": "https://github.com/idimetrix/github-rank.git"
},
"homepage": "https://github.com/idimetrix/github-rank#readme",
"bugs": {
"url": "https://github.com/idimetrix/github-rank/issues",
"email": "sanidhya.verma12345@gmail.com"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier . --write",
"type": "tsc --noEmit --incremental",
"format": "yarn run prettier && yarn run lint && yarn type",
"bootstrap": "yarn install && yarn run format",
"script:github:users": "tsx scripts/github:users.ts",
"script:github:repositories": "tsx scripts/github:repositories.ts",
"script:all": "yarn script:github:users && yarn script:github:repositories"
},
"dependencies": {
"@octokit/request": "9.1.3",
"@t3-oss/env-core": "0.11.1",
"@t3-oss/env-nextjs": "0.11.1",
"clsx": "2.1.1",
"dotenv": "16.4.5",
"framer-motion": "11.11.11",
"next": "15.0.2",
"react": "18.3.1",
"react-countup": "6.5.3",
"react-dom": "18.3.1",
"react-icons": "5.3.0",
"react-typed": "2.0.12",
"swiper": "11.1.14",
"tailwind-merge": "2.5.4",
"tailwind-scrollbar": "3.1.0",
"zod": "3.23.8",
"zod-validation-error": "3.4.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-next": "15.0.2",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-prisma": "5.0.0",
"prettier-plugin-tailwindcss": "0.6.8",
"prettier-plugin-xml": "0.1.0",
"tailwindcss": "3.4.14",
"tsx": "4.19.2",
"typescript": "5.6.3"
},
"packageManager": "yarn@4.5.1"
}