-
-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.93 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ackee",
"version": "3.6.0",
"private": true,
"description": "Self-hosted, Node.js based analytics tool for those who care about privacy",
"keywords": [
"server",
"tracking",
"analytics"
],
"homepage": "https://github.com/electerious/Ackee",
"repository": {
"type": "git",
"url": "https://github.com/electerious/Ackee.git"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/electerious"
},
"license": "MIT",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "node --env-file-if-exists=.env build.js",
"build:pre": "BUILD_ENV=pre npm run build",
"dev": "NODE_ENV=development nodemon",
"eslint": "eslint \"**/*.js\"",
"format": "npm run eslint -- --fix && npm run prettier -- --write",
"healthcheck": "node --env-file-if-exists=.env src/healthcheck.js",
"lint": "npm run eslint && npm run prettier -- --check",
"prettier": "prettier \"**/*.{js,json,md,yml}\"",
"server": "node --env-file-if-exists=.env src/index.js",
"start": "npm run build && npm run server",
"test": "npm run lint && ava"
},
"nodemonConfig": {
"exec": "npm run build:pre && npm run server",
"ext": "js,json,graphql,scss",
"watch": [
"src"
]
},
"ava": {
"environmentVariables": {
"ACKEE_TRACKER": "custom name"
},
"timeout": "20s",
"verbose": true
},
"dependencies": {
"@apollo/server": "^5.5.0",
"@as-integrations/express5": "^1.1.2",
"@graphql-tools/merge": "^9.1.7",
"ackee-tracker": "^5.1.3",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"debounce-promise": "^3.1.2",
"express": "^5.2.1",
"graphql": "^16.13.2",
"graphql-scalars": "^1.25.0",
"graphql-tag": "^2.12.6",
"is-url": "^1.2.4",
"is-valid-domain": "^0.1.6",
"mongoose": "^9.4.1",
"node-schedule": "^2.1.1",
"normalize-url": "^9.0.0",
"request-ip": "^3.3.0",
"sanitize-filename": "^1.6.4",
"signale": "^1.4.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@apollo/client": "^4.1.6",
"@electerious/eslint-config": "^5.2.2",
"@electerious/prettier-config": "^4.0.1",
"ava": "^6.4.1",
"classnames": "^2.5.1",
"eslint": "^9.39.4",
"formbase": "^12.0.3",
"globals": "^17.4.0",
"history": "^5.3.0",
"human-number": "^2.0.10",
"mocked-env": "^1.3.5",
"mongodb-memory-server": "^11.0.1",
"nodemon": "^3.1.14",
"normalize.css": "^8.0.1",
"prettier": "^3.8.1",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-apollo-network-status": "^6.0.0",
"react-dom": "^19.2.4",
"react-fast-compare": "^3.2.2",
"react-use": "^17.6.0",
"rosid-handler-js-next": "^2.0.1",
"rosid-handler-sass": "^9.0.1",
"s-ago": "^2.2.0",
"shortid": "^2.2.17",
"test-listen": "^1.1.0",
"url-pattern": "^1.0.3"
},
"engines": {
"node": ">= 24"
},
"authors": [
"Tobias Reich <tobias@electerious.com>"
]
}