forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.22 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
{
"name": "ackee",
"private": true,
"version": "1.6.0",
"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"
},
"scripts": {
"start": "node src/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc ava",
"lint": "eslint '{src,test}/**/*.js'"
},
"eslintConfig": {
"root": true,
"extends": "@electerious/eslint-config"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"ackee-tracker": "^3.2.2",
"classnames": "^2.2.6",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"formbase": "^12.0.0",
"immer": "^5.3.2",
"is-url": "^1.2.4",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"mongoose": "^5.9.1",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.2",
"normalize-url": "^5.0.0",
"normalize.css": "^8.0.0",
"permit": "^0.2.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-error-boundary": "^1.2.5",
"react-redux": "^7.2.0",
"react-use": "^13.26.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"request-ip": "^2.1.3",
"rosid-handler-js": "^12.2.0",
"rosid-handler-sass": "^6.0.4",
"s-ago": "^2.1.0",
"shortid": "^2.2.15",
"signale": "^1.4.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"@electerious/eslint-config": "^1.3.1",
"ava": "3.3.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.4.0",
"eslint-plugin-react-native": "^3.8.1",
"mocked-env": "^1.3.2",
"nyc": "^15.0.0",
"test-listen": "^1.1.0"
},
"ava": {
"verbose": true,
"timeout": "20s",
"environmentVariables": {
"ACKEE_TRACKER": "custom name"
}
},
"engines": {
"node": ">= 10"
}
}