-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.09 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
{
"name": "igragorodabot",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Sergey R.",
"license": "MIT",
"engines": {
"node": "13.14.x",
"npm": "6.14.x"
},
"scripts": {
"start": "node dist/main.js",
"dev": "run-p watch:**",
"watch:src": "webpack --watch --mode=development --env.development",
"watch:dist": "nodemon --inspect dist/main.js",
"clean": "rm -rf dist",
"build:maps": "npm run clean && webpack",
"build": "npm run clean && webpack -p --mode=production --env.production",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts)\"",
"check-types": "tsc --noEmit",
"check-format": "npm run prettier -- --list-different",
"format": "npm run prettier -- --write",
"validate": "run-p check-types check-format lint",
"cypress:open": "cypress open"
},
"dependencies": {
"dotenv": "8.2.0",
"mongodb": "3.5.7",
"mongodb-client-encryption": "1.0.1",
"node-telegram-bot-api": "0.40.0",
"path": "0.12.7",
"rfdc": "1.1.4"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@types/express": "4.17.6",
"@types/mongodb": "3.5.18",
"@types/node-telegram-bot-api": "0.40.3",
"@types/rfdc": "1.1.0",
"@typescript-eslint/eslint-plugin": "2.32.0",
"@typescript-eslint/parser": "2.32.0",
"babel-loader": "8.1.0",
"babel-plugin-module-resolver": "4.0.0",
"cypress": "4.7.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"ngrok": "3.2.7",
"nodemon": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"ts-loader": "7.0.5",
"typescript": "3.8.3",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "3.3.11"
}
}