-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "gringobot",
"version": "1.0.0",
"exports": "./build/index.js",
"repository": "[email protected]:armand1m/gringobot.git",
"author": "Armando Magalhães <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"async-retry": "^1.3.1",
"await-to-js": "^3.0.0",
"country-code-emoji": "^2.3.0",
"dotenv": "^16.4.5",
"got": "^12.5.3",
"i18n-iso-countries": "^6.5.0",
"js-yaml": "^4.1.0",
"lowdb": "^7.0.0",
"mkdirp": "^1.0.4",
"mustache": "^4.2.0",
"pino": "^8.10.0",
"pino-pretty": "^9.3.0",
"sharp": "^0.33.2",
"svg-captcha": "^1.4.0",
"telegraf": "^4.16.3",
"telegram-format": "^2.1.0",
"tslib": "^2.1.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/async-retry": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.1",
"@types/mustache": "^4.2.2",
"@types/node": "^18",
"@types/pino": "^7.0.5",
"@vitest/coverage-c8": "^0.28.5",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.2.3",
"vitest": "^0.28.5"
},
"scripts": {
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node-esm' src/index.ts",
"lint": "prettier --check './src/**/*.{tsx,ts}'",
"lint:fix": "prettier --write './src/**/*.{tsx,ts}'",
"test": "vitest",
"test:watch": "yarn test --watch",
"test:coverage": "vitest run --coverage"
}
}