-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "bot-estrategias-oblicuas",
"version": "1.0.0",
"main": "bot.js",
"author": "Ramiro Olivencia",
"license": "MIT",
"scripts": {
"build": "babel ./src -d ./dist --extensions .ts && copyfiles --flat src/assets/* ./dist/assets",
"dev": "tsnd --respawn -r @babel/register src/bot.ts",
"lint": "npm run lint:base 'src/**'",
"lint:base": "eslint --ext .js,.json,.ts",
"prettify": "npx prettier --write .",
"start": "node dist/bot.js",
"typecheck": "tsc"
},
"lint-staged": {
"src/**/*.{ts,js,json}": [
"npm run lint:base --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run typecheck && lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "7.18.6",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.12.10",
"@types/node": "^14.14.16",
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"browserslist": ">=4.16.5",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"glob-parent": ">=5.1.2",
"hosted-git-info": ">=2.8.9",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"path-parse": ">=1.0.7",
"prettier": "^2.3.0",
"semver-regex": ">=3.1.3",
"trim-newlines": ">=3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.3",
"ws": ">=7.4.6"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"copyfiles": "^2.4.1",
"dotenv": "^9.0.2",
"node-html-to-image": "^4.0.0",
"path": "^0.12.7",
"regenerator-runtime": "^0.13.9",
"twitter-api-v2": "^1.15.2"
}
}