forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.86 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
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
108
109
110
{
"name": "ackee",
"private": true,
"version": "3.4.2",
"authors": [
"Tobias Reich <tobias@electerious.com>"
],
"description": "Self-hosted, Node.js based analytics tool for those who care about privacy",
"main": "src/index.js",
"keywords": [
"server",
"tracking",
"analytics"
],
"license": "MIT",
"homepage": "https://github.com/electerious/Ackee",
"repository": {
"type": "git",
"url": "https://github.com/electerious/Ackee.git"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/electerious"
},
"scripts": {
"start": "npm run build && npm run server",
"start:dev": "NODE_ENV=development nodemon",
"build:pre": "BUILD_ENV=pre npm run build",
"build": "node build.js",
"server": "node src/index.js",
"coveralls": "nyc report --reporter=lcov",
"test": "npm run lint && nyc ava",
"lint": "eslint \"{functions,src,test}/**/*.js\""
},
"dependencies": {
"@graphql-tools/merge": "^8.3.14",
"ackee-tracker": "^5.1.0",
"apollo-server-core": "^3.11.1",
"apollo-server-lambda": "^3.11.1",
"apollo-server-micro": "^3.11.1",
"apollo-server-plugin-http-headers": "^0.1.4",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.4",
"debounce-promise": "^3.1.2",
"dotenv": "^16.0.0",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"is-url": "^1.2.4",
"is-valid-domain": "^0.1.6",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"mongoose": "^6.3.1",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"normalize-url": "^6.0.1",
"request-ip": "^2.1.3",
"sanitize-filename": "^1.6.3",
"signale": "^1.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@apollo/client": "^3.7.2",
"@electerious/eslint-config": "^3.5.0",
"ava": "5.1.0",
"classnames": "^2.3.1",
"coveralls": "^3.1.1",
"formbase": "^12.0.2",
"history": "^5.3.0",
"human-number": "^2.0.1",
"mocked-env": "^1.3.5",
"mongodb-memory-server": "^8.5.2",
"nodemon": "^2.0.16",
"normalize.css": "^8.0.1",
"nyc": "^15.1.0",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-apollo-network-status": "^5.0.1",
"react-dom": "^18.1.0",
"react-fast-compare": "^3.2.0",
"react-hotkeys-hook": "^3.4.4",
"react-use": "^17.3.2",
"rosid-handler-js-next": "^1.0.1",
"rosid-handler-sass": "^8.0.0",
"s-ago": "^2.2.0",
"shortid": "^2.2.16",
"test-listen": "^1.1.0",
"url-pattern": "^1.0.3"
},
"ava": {
"verbose": true,
"timeout": "20s",
"environmentVariables": {
"ACKEE_TRACKER": "custom name"
}
},
"eslintConfig": {
"root": true,
"extends": "@electerious/eslint-config"
},
"nodemonConfig": {
"exec": "npm run build:pre && npm run server",
"ext": "js,json,graphql,scss",
"watch": [
"src"
]
},
"engines": {
"node": ">= 14"
}
}