forked from funmusicplace/mirlo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3 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": "mirlo",
"version": "1.0.0",
"license": "GPL-3.0",
"scripts": {
"api:test": "tsc --noEmit && mocha test",
"api:watch": "NODE_ENV=development PORT=3000 nodemon src/index.ts",
"api:start": "ts-node src/index.ts",
"prepare": "husky install"
},
"dependencies": {
"@bull-board/express": "^4.11.0",
"@faker-js/faker": "^8.3.1",
"@prisma/client": "5",
"@types/connect-busboy": "^1.0.3",
"@types/faker": "^6.6.9",
"@types/rss": "^0.0.30",
"@types/showdown": "^2.0.2",
"archiver": "^6.0.0",
"bcryptjs": "^2.4.3",
"bullmq": "^3.5.10",
"bytes": "^3.1.2",
"connect-busboy": "^1.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"email-templates": "^10.0.1",
"express": "4.18.2",
"express-openapi": "^12.1.0",
"express-rate-limit": "^7.1.4",
"file-type": "16",
"filenamify": "^4.3.0",
"fluent-ffmpeg": "^2.1.2",
"husky": "^8.0.3",
"image-size": "^1.0.2",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"minio": "^7.0.33",
"multer": "^1.4.5-lts.1",
"music-metadata": "7.13.3",
"nodemailer": "^6.9.1",
"nodemailer-sendgrid": "^1.0.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"rss": "^1.2.2",
"sharp": "^0.33.3",
"shasum": "^1.0.2",
"showdown": "^2.1.0",
"slugify": "^1.6.6",
"stripe": "^12.0.0",
"swagger-ui-express": "^4.6.0",
"typescript": "5.1.6",
"winston": "^3.8.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
"@types/bcryptjs": "^2.4.2",
"@types/bytes": "^3.1.1",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv-safe": "^8.1.2",
"@types/email-templates": "^10.0.1",
"@types/express": "4.17.14",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/json2csv": "^5.0.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.191",
"@types/minio": "^7.0.18",
"@types/mocha": "^10.0.1",
"@types/multer": "^1.4.7",
"@types/node": "18.11.12",
"@types/nodemailer": "^6.4.14",
"@types/nodemailer-sendgrid": "^1.0.0",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.8",
"@types/sharp": "^0.31.1",
"@types/shasum": "^1.0.0",
"@types/sinon": "^17.0.3",
"@types/stripe": "^8.0.417",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yargs": "^17.0.22",
"@yarnpkg/pnpify": "^4.0.1",
"concurrently": "^7.6.0",
"lint-staged": "14.0.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"prettier": "^3.2.5",
"prisma": "5",
"rss-parser": "^3.13.0",
"sinon": "^17.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.2"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": "prettier --write"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"workspaces": [
"prisma",
"client"
],
"packageManager": "yarn@4.1.1"
}