This repository was archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.91 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.91 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
107
108
109
{
"name": "typescript-nodejs",
"version": "1.0.0",
"description": "This is structure project of typescript application, develop by DS112",
"main": "www",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register ./src/tests/bin/www.unit.test.ts",
"start": "concurrently \"node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/bin/www.js\" \"node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/workers/start.worker.js\"",
"eslint": "eslint --no-error-on-unmatched-pattern --fix --fix-type suggestion --fix-type problem .",
"dev": "concurrently \"nodemon --exec ts-node ./src/bin/www.ts\" \"nodemon --exec ts-node ./src/workers/start.worker.ts\"",
"dev:server": "nodemon --exec ts-node ./src/bin/www.ts",
"dev:worker": "nodemon --exec ts-node ./src/workers/start.worker.ts",
"dev:micro-service": "concurrently \"cd go && nodemon --exec go run main.go\" \"nodemon --exec ts-node ./src/bin/www.ts\" \"nodemon --exec ts-node ./src/workers/start.worker.ts\"",
"@dev": "concurrently \"nodemon --exec ts-node -r tsconfig-paths/register ./src/bin/www.ts\" \"nodemon --exec ts-node -r tsconfig-paths/register ./src/workers/start.worker.ts\"",
"@dev:server": "nodemon --exec ts-node -r tsconfig-paths/register ./src/bin/www.ts",
"@dev:worker": "nodemon --exec ts-node -r tsconfig-paths/register ./src/workers/start.worker.ts",
"@dev:micro-service": "concurrently \"cd go && nodemon --exec go run main.go\" \"nodemon --exec ts-node -r tsconfig-paths/register ./src/bin/www.ts\" \"nodemon --exec ts-node -r tsconfig-paths/register ./src/workers/start.worker.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/onepiecehung/typescript-nodejs.git"
},
"keywords": [
"typescript",
"node"
],
"author": "DS112, ONEPIECEHUNG",
"license": "ISC",
"bugs": {
"url": "https://github.com/onepiecehung/typescript-nodejs/issues"
},
"homepage": "https://github.com/onepiecehung/typescript-nodejs#readme",
"dependencies": {
"amqplib": "^0.8.0",
"aws-sdk": "^2.1009.0",
"axios": "^0.23.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-prom-bundle": "^6.4.1",
"express-rate-limit": "^5.5.0",
"geoip-lite": "^1.4.2",
"helmet": "^4.6.0",
"http-errors": "^1.8.0",
"ioredis": "^4.28.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.11",
"mongoose-snowflake-id": "^1.0.1",
"morgan": "^1.10.0",
"nodemailer": "^6.7.0",
"prom-client": "^14.0.0",
"public-ip": "^4.0.4",
"rate-limit-redis": "^2.1.0",
"socket.io": "^4.3.1",
"socket.io-client": "^4.3.2",
"socket.io-redis": "^6.1.1",
"tracer": "^1.1.5",
"ua-parser-js": "^0.7.28",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.22",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/geoip-lite": "^1.4.1",
"@types/http-errors": "^1.8.1",
"@types/ioredis": "^4.27.7",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.1",
"@types/nodemailer": "^6.4.4",
"@types/nodemon": "^1.19.1",
"@types/rate-limit-redis": "^1.7.2",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^8.3.1",
"@types/webpack": "^5.28.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"html-loader": "^2.1.2",
"mocha": "^9.1.3",
"nodemon": "^2.0.13",
"prettier": "2.4.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}