forked from ZhiliOJ/lyrio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.31 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
111
{
"name": "syzoj-ng",
"version": "0.0.1",
"description": "The next generation SYZOJ server",
"repository": "https://github.com/syzoj/syzoj-ng",
"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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@nestjs/common": "^7.6.6",
"@nestjs/core": "^7.6.6",
"@nestjs/platform-express": "^7.6.6",
"@nestjs/platform-socket.io": "^7.6.6",
"@nestjs/swagger": "^4.7.12",
"@nestjs/typeorm": "^7.1.4",
"@nestjs/websockets": "^7.6.6",
"@nestlab/google-recaptcha": "^1.2.1",
"@types/cheerio": "^0.22.23",
"@types/deasync": "^0.1.1",
"bcrypt": "^5.0.0",
"caught": "^0.1.3",
"cheerio": "^1.0.0-rc.5",
"class-transformer": "^0.3.2",
"class-validator": "^0.13.1",
"ejs": "^3.1.5",
"emoji-regex": "^9.2.0",
"fs-extra": "^9.1.0",
"git-repo-info": "^2.1.1",
"ioredis": "^4.19.4",
"ip2region": "^2.1.1",
"js-yaml": "^4.0.0",
"jsdom": "^16.4.0",
"jsondiffpatch": "^0.4.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.2",
"minio": "^7.0.18",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"object-path": "^0.11.5",
"proxy-agent": "^4.0.1",
"randomstring": "^1.1.5",
"rate-limiter-flexible": "^2.2.1",
"rxjs": "^6.6.3",
"serialize-javascript": "^5.0.1",
"socket.io-msgpack-parser": "^2.2.1",
"socket.io-redis": "^5.3.0",
"streamsaver": "^2.0.5",
"swagger-ui-express": "^4.1.6",
"telegraf": "^4.0.1",
"tempy": "^1.0.0",
"terser": "^5.5.1",
"toposort": "^2.0.2",
"typeorm": "^0.2.30",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"xdomain": "^0.8.2"
},
"devDependencies": {
"@nestjs/cli": "^7.5.4",
"@nestjs/schematics": "^7.2.7",
"@types/bcrypt": "^3.0.0",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.6",
"@types/ioredis": "^4.19.2",
"@types/js-yaml": "^4.0.0",
"@types/jsdom": "^16.2.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/minio": "^7.0.7",
"@types/node": "^14.14.22",
"@types/nodemailer": "^6.4.0",
"@types/object-path": "^0.11.0",
"@types/randomstring": "^1.1.6",
"@types/serialize-javascript": "^5.0.0",
"@types/socket.io": "^2.1.13",
"@types/socket.io-redis": "^1.0.26",
"@types/toposort": "^2.0.3",
"@types/unzipper": "^0.10.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2-alpha.1",
"@typescript-eslint/parser": "^4.14.2-alpha.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.14",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
}
}