-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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": "plausible",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --loader ts-node/esm/transpile-only src/index.ts",
"dev": "nodemon --exec node --loader ts-node/esm/transpile-only src/index.ts",
"serve": "node build/main.js",
"test": "jest",
"west": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xAndrewBlack/plausible-exporter"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^5.0.1",
"cron": "^2.1.0",
"dotenv": "^16.0.1",
"influx": "^5.9.3",
"moment": "^2.29.4",
"node-cron": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/cron": "^2.0.0",
"@types/jest": "^28.1.6",
"@types/moment": "^2.13.0",
"@types/node-cron": "^3.0.2",
"babel-jest": "^28.1.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}