forked from lyrio-dev/lyrio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.26 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
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
{
"name": "@lyrio/lyrio",
"version": "0.0.1",
"description": "The backend service of Lyrio",
"repository": "https://github.com/lyrio-dev/lyrio",
"license": "MIT",
"author": "Menci",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\"",
"check-style": "prettier --check \"src/**/*.ts\"",
"lint": "eslint src --ext ts --cache",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"postinstall": "patch-package"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/platform-socket.io": "^8.2.6",
"@nestjs/swagger": "^5.2.0",
"@nestjs/typeorm": "^8.0.3",
"@nestjs/websockets": "^8.2.6",
"@nestlab/google-recaptcha": "^2.1.2",
"@types/cheerio": "^0.22.31",
"@types/deasync": "^0.1.2",
"bcrypt": "^5.0.1",
"caught": "^0.1.3",
"cheerio": "^1.0.0-rc.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"ejs": "^3.1.6",
"emoji-regex": "^10.0.0",
"fs-extra": "^10.0.0",
"git-repo-info": "^2.1.1",
"ioredis": "^4.28.5",
"ip2region": "^2.2.0",
"js-yaml": "^4.1.0",
"jsdom": "^19.0.0",
"jsondiffpatch": "^0.4.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.5",
"minio": "^7.0.26",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.2",
"object-path": "^0.11.8",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"proxy-agent": "^5.0.0",
"randomstring": "^1.2.2",
"rate-limiter-flexible": "^2.3.6",
"rxjs": "^7.5.4",
"serialize-javascript": "^6.0.0",
"socket.io-msgpack-parser": "^3.0.1",
"streamsaver": "^2.0.6",
"swagger-ui-express": "^4.3.0",
"telegraf": "^4.7.0",
"tempy": "^1.0.0",
"terser": "^5.10.0",
"toposort": "^2.0.2",
"typeorm": "^0.2.41",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"xdomain": "^0.8.2"
},
"devDependencies": {
"@nestjs/cli": "^8.2.0",
"@nestjs/schematics": "^8.0.6",
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/ioredis": "^4.28.8",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^16.2.14",
"@types/jsonwebtoken": "^8.5.8",
"@types/minio": "^7.0.12",
"@types/node": "16",
"@types/nodemailer": "^6.4.4",
"@types/object-path": "^0.11.1",
"@types/randomstring": "^1.1.8",
"@types/serialize-javascript": "^5.0.2",
"@types/toposort": "^2.0.3",
"@types/unzipper": "^0.10.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
}
}