-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "telegram-nodejs",
"version": "0.0.1",
"description": "Telegram NodeJS example",
"main": "dist/index.js",
"scripts": {
"start": "node -r dotenv/config --trace-warnings dist/index.js",
"build": "npm run -s lint && rimraf dist && npm run -s build:ts",
"watch": "npm run -s lint && rimraf dist && npm run -s watch:ts",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"lint-ci": "eslint 'src/**/*.{js,ts,tsx}' --quiet"
},
"author": "Robert Vane",
"license": "UNLICENSED",
"devDependencies": {
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@mtproto/core": "^5.3.0",
"dotenv": "^8.2.0"
}
}