-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 KB
/
package.json
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": "visitor-badge",
"version": "1.0.0-beta.15",
"description": "A badge generator service to count visitors of your markdown file.",
"main": "src/main.js",
"scripts": {
"pnpm": "pnpm i",
"start": "node src/server.js",
"start:hot": "nodemon src/server.js",
"lint": "npx eslint src && npx prettier --check src",
"lint:fix": "npx eslint --fix src && npx prettier --check --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lete114/visitor-badge.git"
},
"files": [
"public",
"src",
"README.md",
"README_EN.md",
"LICENSE"
],
"keywords": [
"visitor",
"badge",
"visitor-badge"
],
"author": "Lete乐特",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lete114/visitor-badge/issues"
},
"homepage": "https://github.com/Lete114/visitor-badge#readme",
"devDependencies": {
"eslint": "^8.16.0",
"nodemon": "^2.0.18",
"pnpm": "^7.11.0",
"prettier": "^2.6.2"
},
"dependencies": {
"badge-maker": "^3.3.1",
"body-data": "^1.0.5",
"deta": "^1.1.0",
"dotenv": "^16.0.1",
"get-user-ip": "^1.0.0",
"ioredis": "^5.1.0",
"mongodb": "^4.7.0",
"output-line": "^1.0.1"
}
}