forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.19 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ackee",
"private": true,
"version": "3.0.5",
"authors": [
"Tobias Reich <[email protected]>"
],
"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": "nyc ava",
"lint": "eslint '{functions,src,test}/**/*.js'"
},
"dependencies": {
"ackee-tracker": "^5.0.1",
"apollo-server-lambda": "^2.21.0",
"apollo-server-micro": "^2.21.0",
"apollo-server-plugin-http-headers": "^0.1.4",
"date-fns": "^2.17.0",
"date-fns-tz": "^1.1.2",
"debounce-promise": "^3.1.2",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"graphql-scalars": "^1.7.1",
"graphql-tools": "^7.0.4",
"is-url": "^1.2.4",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"mongoose": "^5.11.17",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"normalize-url": "^5.0.0",
"request-ip": "^2.1.3",
"sanitize-filename": "^1.6.3",
"signale": "^1.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@electerious/eslint-config": "^1.4.0",
"ava": "3.15.0",
"classnames": "^2.2.6",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.9.1",
"formbase": "^12.0.1",
"history": "^5.0.0",
"human-number": "^1.0.6",
"husky": "^4.3.8",
"immer": "^8.0.1",
"mocked-env": "^1.3.2",
"mongodb-memory-server": "^6.9.3",
"nodemon": "^2.0.7",
"normalize.css": "^8.0.1",
"nyc": "^15.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.0",
"react-fast-compare": "^3.2.0",
"react-hotkeys-hook": "^3.1.0",
"react-redux": "^7.2.2",
"react-use": "^17.1.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"rosid-handler-js-next": "^1.0.0",
"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"
]
},
"husky": {
"hooks": {
"pre-push": "npm run build:pre",
"pre-commit": "npm run lint"
}
},
"engines": {
"node": ">= 14"
}
}