-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.42 KB
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
{
"name": "@sertis-chat-commerce/ts-toolkit",
"version": "1.2.23",
"contributors": [
"Panya Batphantana <fanneioz@yahoo.co.th>",
"Jinkawin Phongpawarit <jinkawin.pho@hotmail.com>",
"Sarunyou Whangbungyapirat <sarunyouwhang11@gmail.com>"
],
"engines": {
"node": "^18"
},
"main": "./index.js",
"types": "./index.d.ts",
"repository": "git@gitlab.com:sertiscorp/dev/7-11-chat/backend/ts-http-toolkit.git",
"license": "MIT",
"files": [
"cache",
"ddd",
"config",
"db",
"event-stream",
"gcp",
"http-kit",
"mq",
"scheduler",
"media",
"utils",
"secret",
"index.js",
"index.d.ts"
],
"dependencies": {
"@elastic/ecs-winston-format": "^1.3.0",
"@firebase/app-types": "^0.7.0",
"@google-cloud/firestore": "^7.8.0",
"@google-cloud/pubsub": "^4.4.1",
"@google-cloud/secret-manager": "^5.6.0",
"@google-cloud/storage": "^5.18.2",
"axios": "^1.6.7",
"cassandra-driver": "^4.6.3",
"cuid": "^2.1.8",
"dotenv": "^10.0.0",
"elastic-apm-node": "^4.5.4",
"express": "^4.17.1",
"firebase-admin": "^12.1.1",
"joi": "^17.6.0",
"module-alias": "^2.2.2",
"nanoid": "^3.1.23",
"node-cron": "^3.0.0",
"pg": "^8.7.3",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^29.5.11",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.37",
"@types/node-cron": "^3.0.1",
"@types/pg": "^8.6.5",
"@types/redis": "^2.8.31",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-eslint": "^10.1.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^29.7.0",
"jest-junit": "^13.0.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^29.1.2",
"ts-node": "^9.1.1",
"tsc-alias": "^1.7.0",
"ttypescript": "^1.5.12",
"typescript": "~5.2.x"
},
"scripts": {
"prestart:local": "rm -rf ./build/local/ && tsc --outDir build/local/",
"start:local": "HTTP_PORT=3000 node build/local/app.js",
"db:local": "docker-compose --env-file .env up -d",
"prebuild": "rm -Rf $(cd src && ls -d *) app.* index.*",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"migration:setup": "sh ./liquibase-cassandra-setup.sh",
"migration:up:local": "yarn run migration:setup && docker-compose -f docker-compose.liquibase.yml up update && docker-compose -f docker-compose.liquibase.yml rm -fsv",
"migration:down:local": "yarn run migration:setup && docker-compose -f docker-compose.liquibase.yml up rollback && docker-compose -f docker-compose.liquibase.yml rm -fsv",
"migration:history": "yarn run migration:setup && docker-compose -f docker-compose.liquibase.yml up history && docker-compose -f docker-compose.liquibase.yml rm -fsv",
"start": "node app.js",
"lint": "eslint --config .eslintrc.json --ext ts,.d.ts src tests --fix",
"test": "NODE_OPTIONS=--no-experimental-fetch jest --collectCoverage"
},
"eslintIgnore": [
"app.ts",
"*.config.js"
],
"volta": {
"node": "18.17.1"
}
}