-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "myip",
"version": "0.1.3",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"type-check": "tsc --noEmit",
"format:write": "prettier --write \"{app,lib,components}/**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"{app,lib,components}/**/*.{ts,tsx,mdx}\" --cache",
"update-db": "node ./lib/download/geocn.js && node ./lib/download/geolite2.js && node ./lib/download/qqwry.js"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@vercel/analytics": "^1.5.0",
"ioredis": "^5.7.0",
"ipdb": "^0.3.3",
"maxmind": "^4.3.28",
"next": "15.5.9",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sonner": "^2.0.6",
"validator": "^13.15.15"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/validator": "^13.12.0",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^17.2.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"fs-extra": "^11.3.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"tar": "^7.4.3",
"typescript": "^5.5.2"
}
}