-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@socialgouv/matomo-postgres",
"description": "Extract visitor events from Matomo API and push to Postgres",
"version": "0.0.1",
"types": "types/index.d.ts",
"license": "Apache-2.0",
"main": "dist/index.js",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"bin": {
"matomo-postgres": "./bin/index.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"start": "yarn migrate && node ./dist/index.js",
"build": "tsc",
"prepublish": "yarn build",
"migrate": "node ./dist/migrate-latest.js",
"test": "jest --verbose"
},
"prettier": {
"printWidth": 120
},
"dependencies": {
"date-fns": "^2.29.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"kysely": "^0.23.4",
"p-all": "^3",
"pg": "^8.9.0",
"piwik-client": "^0.2.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.4",
"@types/pg": "^8.6.6",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}