@reachu/database 1.0.43 → 1.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
},
|
|
21
|
-
"author": "reachu",
|
|
22
|
-
"license": "ISC",
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@reachu/logger": "1.0.43",
|
|
25
|
-
"@reachu/utils": "1.0.43",
|
|
26
|
-
"dotenv": "8.0.0",
|
|
27
|
-
"express": "4.17.1",
|
|
28
|
-
"mysql2": "1.5.2",
|
|
29
|
-
"sqlite3": "4.0.9",
|
|
30
|
-
"typeorm": "0.2.41",
|
|
31
|
-
"typeorm-naming-strategies": "1.1.0",
|
|
32
|
-
"shortid": "2.2.16"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@babel/core": "7.12.13",
|
|
36
|
-
"@babel/plugin-proposal-class-properties": "7.12.1",
|
|
37
|
-
"@babel/plugin-proposal-decorators": "7.12.12",
|
|
38
|
-
"@babel/preset-env": "7.12.11",
|
|
39
|
-
"@babel/preset-typescript": "7.12.7",
|
|
40
|
-
"@types/dotenv": "8.2.0",
|
|
41
|
-
"@types/express": "4.17.13",
|
|
42
|
-
"@types/express-winston": "4.0.0",
|
|
43
|
-
"@types/jest": "27.4.0",
|
|
44
|
-
"@types/node": "14.14.22",
|
|
45
|
-
"@types/winston": "2.4.4",
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "4.14.0",
|
|
47
|
-
"@typescript-eslint/parser": "4.14.0",
|
|
48
|
-
"eslint": "7.18.0",
|
|
49
|
-
"eslint-config-prettier": "7.2.0",
|
|
50
|
-
"eslint-plugin-jest": "23.8.2",
|
|
51
|
-
"eslint-plugin-prettier": "3.3.1",
|
|
52
|
-
"jest": "27.4.5",
|
|
53
|
-
"jest-junit": "12.1.0",
|
|
54
|
-
"nodemon": "2.0.2",
|
|
55
|
-
"prettier": "2.2.1",
|
|
56
|
-
"ts-jest": "27.1.2",
|
|
57
|
-
"ts-node": "9.1.1",
|
|
58
|
-
"typescript": "4.1.3"
|
|
59
|
-
},
|
|
60
|
-
"jest": {
|
|
61
|
-
"preset": "ts-jest",
|
|
62
|
-
"testEnvironment": "node",
|
|
63
|
-
"setupFilesAfterEnv": [
|
|
64
|
-
"./test/setup.ts"
|
|
65
|
-
],
|
|
66
|
-
"moduleNameMapper": {
|
|
67
|
-
"src/(.*)": "<rootDir>/src/$1"
|
|
2
|
+
"name": "@reachu/database",
|
|
3
|
+
"version": "1.0.45",
|
|
4
|
+
"description": "reachu-database",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"clean": "rm -rf dist && mkdir dist",
|
|
9
|
+
"test": "jest",
|
|
10
|
+
"build": "yarn clean && tsc",
|
|
11
|
+
"start": "node dist/index.js",
|
|
12
|
+
"debug": "nodemon --exec 'node --inspect=0.0.0.0:9229 --require ts-node/register src/index.js'",
|
|
13
|
+
"debug-dev": "nodemon --inspect src/index.ts",
|
|
14
|
+
"dev": "nodemon",
|
|
15
|
+
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate",
|
|
16
|
+
"migration:run": "ts-node ./node_modules/typeorm/cli migration:run",
|
|
17
|
+
"migration:execute": "ts-node src/migrations/execute/index.ts",
|
|
18
|
+
"migration:revert": "ts-node ./node_modules/typeorm/cli migration:revert",
|
|
19
|
+
"db:diagram": "ts-node ./node_modules/.bin/typeorm-uml ormconfig.js"
|
|
68
20
|
},
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
21
|
+
"author": "reachu",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@reachu/logger": "1.0.45",
|
|
25
|
+
"@reachu/utils": "1.0.45",
|
|
26
|
+
"dotenv": "8.0.0",
|
|
27
|
+
"express": "4.17.1",
|
|
28
|
+
"mysql2": "1.5.2",
|
|
29
|
+
"sqlite3": "4.0.9",
|
|
30
|
+
"typeorm": "0.2.41",
|
|
31
|
+
"typeorm-naming-strategies": "1.1.0",
|
|
32
|
+
"shortid": "2.2.16"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@babel/core": "7.12.13",
|
|
36
|
+
"@babel/plugin-proposal-class-properties": "7.12.1",
|
|
37
|
+
"@babel/plugin-proposal-decorators": "7.12.12",
|
|
38
|
+
"@babel/preset-env": "7.12.11",
|
|
39
|
+
"@babel/preset-typescript": "7.12.7",
|
|
40
|
+
"@types/dotenv": "8.2.0",
|
|
41
|
+
"@types/express": "4.17.13",
|
|
42
|
+
"@types/express-winston": "4.0.0",
|
|
43
|
+
"@types/jest": "27.4.0",
|
|
44
|
+
"@types/node": "14.14.22",
|
|
45
|
+
"@types/winston": "2.4.4",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "4.14.0",
|
|
47
|
+
"@typescript-eslint/parser": "4.14.0",
|
|
48
|
+
"eslint": "7.18.0",
|
|
49
|
+
"eslint-config-prettier": "7.2.0",
|
|
50
|
+
"eslint-plugin-jest": "23.8.2",
|
|
51
|
+
"eslint-plugin-prettier": "3.3.1",
|
|
52
|
+
"jest": "27.4.5",
|
|
53
|
+
"jest-junit": "12.1.0",
|
|
54
|
+
"nodemon": "2.0.2",
|
|
55
|
+
"prettier": "2.2.1",
|
|
56
|
+
"ts-jest": "27.1.2",
|
|
57
|
+
"ts-node": "9.1.1",
|
|
58
|
+
"typescript": "4.1.3"
|
|
59
|
+
},
|
|
60
|
+
"jest": {
|
|
61
|
+
"preset": "ts-jest",
|
|
62
|
+
"testEnvironment": "node",
|
|
63
|
+
"setupFilesAfterEnv": [
|
|
64
|
+
"./test/setup.ts"
|
|
65
|
+
],
|
|
66
|
+
"moduleNameMapper": {
|
|
67
|
+
"src/(.*)": "<rootDir>/src/$1"
|
|
68
|
+
},
|
|
69
|
+
"modulePathIgnorePatterns": [
|
|
70
|
+
"./dist"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"resolutions": {
|
|
74
|
+
"logform": "2.4.2",
|
|
75
|
+
"@types/babel__traverse": "7.18.3"
|
|
76
|
+
}
|
|
77
|
+
}
|