This repository was archived by the owner on Apr 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.59 KB
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
{
"name": "@skyra/outflux",
"description": "Microservice for Skyra to take screenshots of the InfluxDB Dashboard using Puppeteer",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@skyra",
"license": "MIT",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js"
},
"scripts": {
"predocker:build": "run-s clean build",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up -d",
"docker:logs": "docker-compose logs -f",
"lint": "eslint src --ext ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node dist/index.js",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"dev": "yarn build && yarn start",
"update": "yarn upgrade-interactive --latest",
"prepare": "husky install .github/husky"
},
"dependencies": {
"fastify": "^3.28.0",
"puppeteer": "^13.5.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@sapphire/eslint-config": "4.3.3",
"@sapphire/prettier-config": "1.4.2",
"@sapphire/ts-config": "3.3.4",
"@types/node": "^17.0.8",
"@types/puppeteer": "^5.4.5",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6",
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz",
"jest-jasmine2": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/outflux.git"
},
"engines": {
"node": ">=v14.18.1",
"npm": ">=7.24.2"
},
"keywords": [
"influxdb",
"typescript",
"ts",
"yarn",
"puppeteer",
"skyra",
"microservice"
],
"bugs": {
"url": "https://github.com/skyra-project/outflux/issues"
},
"homepage": "https://github.com/skyra-project/outflux",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.2.0"
}