-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "ts-base",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/Main.ts",
"build": "tsc",
"prod": "node build/Main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"telegraf": "^4.4.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"*.{js,ts,md}": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}