-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 973 Bytes
/
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
{
"name": "librecounter",
"version": "3.0.1",
"description": "Free and open website statistics",
"type": "module",
"main": "bin/start.js",
"scripts": {
"dev": "supervisor bin/start.js",
"start": "node bin/start.js",
"test": "node bin/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexfernandez/librecounter.git"
},
"keywords": [
"stats",
"analytics",
"counter",
"web"
],
"author": "[email protected]",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/alexfernandez/librecounter/issues"
},
"homepage": "https://github.com/alexfernandez/librecounter#readme",
"devDependencies": {
"eslint": "^8.56.0",
"pino-pretty": "^10.2.3",
"supervisor": "^0.12.0"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"dotenv": "^16.3.1",
"fastify": "^4.23.2",
"geoip-lite": "^1.4.10",
"node-device-detector": "^2.0.16"
}
}