-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.92 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
110
111
112
113
114
115
116
117
118
{
"name": "crm-server-v2",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc && babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"barrels": "barrelsby --config .barrelsby.json",
"start": "babel-watch --extensions .ts src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"bundle": "tsc && cross-env NODE_ENV=production webpack",
"start:bundle": "cross-env NODE_ENV=production node dist/app.bundle.js",
"test": "yarn run test:lint && yarn run test:coverage",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn run test:unit",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"cron:reminder": "ts-node src/cron/reminder.ts"
},
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@tsed/ajv": "^7.39.1",
"@tsed/common": "^7.39.1",
"@tsed/core": "^7.39.1",
"@tsed/di": "^7.39.1",
"@tsed/engines": "^7.39.1",
"@tsed/exceptions": "^7.39.1",
"@tsed/json-mapper": "^7.39.1",
"@tsed/logger": "^6.6.3",
"@tsed/logger-file": "^6.6.3",
"@tsed/mongoose": "^7.39.1",
"@tsed/openspec": "^7.39.1",
"@tsed/platform-cache": "^7.39.1",
"@tsed/platform-exceptions": "^7.39.1",
"@tsed/platform-express": "^7.39.1",
"@tsed/platform-log-middleware": "^7.39.1",
"@tsed/platform-middlewares": "^7.39.1",
"@tsed/platform-params": "^7.39.1",
"@tsed/platform-response-filter": "^7.39.1",
"@tsed/platform-views": "^7.39.1",
"@tsed/schema": "^7.39.1",
"@tsed/socketio": "^7.39.1",
"@tsed/swagger": "^7.39.1",
"@types/crypto-js": "^4.1.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.13",
"ajv": "^8.12.0",
"axios": "^1.6.0",
"barrelsby": "^2.8.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^4.0.0",
"express": "^4.18.2",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mongoose": "^8.0.3",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"openai": "^4.17.3",
"redline": "^1.0.1",
"socket.io": "^4.7.2",
"twilio": "^5.0.0-rc.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@tsed/cli-plugin-eslint": "4.6.4",
"@tsed/cli-plugin-jest": "4.6.4",
"@tsed/cli-plugin-mongoose": "4.6.4",
"@tsed/testing-mongoose": "^7.39.1",
"@types/compression": "^1.7.4",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/method-override": "^0.0.34",
"@types/multer": "^1.4.9",
"@types/node": "^20.8.7",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-loader": "^9.1.3",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"babel-watch": "^7.8.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "yarn"
}
}