-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "chatbot-weather",
"version": "1.0.0",
"description": "just another weather chatbot...",
"repository": "https://github.com/maaraanas/chatbot-weather",
"author": "Andrii Klubuk",
"license": "MIT",
"scripts": {
"start": "npm run serve",
"build": "rm -rf lib/ && babel src --out-dir lib --extensions '.ts'",
"serve": "node lib/server.js",
"watch-node": "nodemon lib/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-sass\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"debug": "npm run build && npm run watch-debug"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"prettier": "@shelf/prettier-config",
"lint-staged": {
"*.{html,json,md,yml,graphql}": [
"prettier --write",
"git add"
],
"*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"bluebird": "3.5.5",
"body-parser": "1.19.0",
"compression": "1.7.4",
"connect-mongo": "3.0.0",
"dotenv": "8.1.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-flash": "0.0.2",
"express-session": "1.16.2",
"express-validator": "6.2.0",
"lodash": "4.17.21",
"messaging-api-viber": "0.8.2",
"moment": "2.24.0",
"moment-timezone": "0.5.27",
"mongoose": "5.7.1",
"mysql2": "2.1.0",
"request": "2.88.2",
"ts-custom-error": "3.1.1",
"uuid": "3.3.3",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/node": "7.13.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.14.1",
"@babel/preset-typescript": "7.13.0",
"@shelf/babel-config": "0.1.2",
"@shelf/eslint-config": "1.1.0",
"@shelf/prettier-config": "1.0.0",
"@types/async": "3.2.6",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "3.5.27",
"@types/body-parser": "1.17.1",
"@types/chai": "4.2.3",
"@types/compression": "1.0.1",
"@types/concurrently": "4.1.0",
"@types/connect-mongo": "0.0.43",
"@types/dotenv": "6.1.1",
"@types/errorhandler": "0.0.32",
"@types/eslint": "6.1.1",
"@types/express": "4.17.11",
"@types/express-flash": "0.0.1",
"@types/express-session": "1.15.14",
"@types/jest": "24.0.18",
"@types/jquery": "3.5.5",
"@types/lodash": "4.14.168",
"@types/lusca": "1.6.1",
"@types/mongoose": "5.5.32",
"@types/node": "14",
"@types/request": "2.48.3",
"@types/shelljs": "0.8.5",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"babel-jest": "26.6.3",
"eslint": "7.25.0",
"eslint-plugin-jest": "24.3.6",
"husky": "3.0.9",
"jest": "26.6.3",
"lint-staged": "9.4.2",
"prettier": "2.2.1",
"shelljs": "0.8.3",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"typescript": "4.2.4"
},
"main": "index.js"
}