-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "chat_bot_family_test_task",
"version": "1.0.0",
"description": "ChatBot_Family test task",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "cross-env TS_NODE=true ts-node -r tsconfig-paths/register src/main.ts",
"start:prod": "node dist/main",
"test": "jest",
"test:debug": "cross-env TS_NODE=true node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest",
"typeorm": "cross-env TS_NODE=true ts-node ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temnov98/chat_bot_family_test_task.git"
},
"author": "Temnov Aleksey",
"license": "ISC",
"bugs": {
"url": "https://github.com/temnov98/chat_bot_family_test_task/issues"
},
"homepage": "https://github.com/temnov98/chat_bot_family_test_task#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"dotenv": "^8.2.0",
"inversify": "^5.0.5",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"telegraf": "^4.2.1",
"typeorm": "^0.2.31",
"typeorm-naming-strategies": "^2.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/hapi__joi": "^17.1.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}