forked from tdjsnelling/sqtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "@sqtracker/api",
"version": "1.5.0",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"start": "babel-node src/index.js",
"migration:torrent-add-fuzzy-name": "babel-node src/migrations/torrent-add-fuzzy-name.js"
},
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@sentry/node": "^7.36.0",
"@sentry/tracing": "^7.36.0",
"bcrypt": "^5.0.1",
"bencode": "^2.0.1",
"bittorrent-tracker": "9.19.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"content-disposition": "^0.5.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^8.5.1",
"memoizee": "^0.4.15",
"mongoose": "^5.13.2",
"mongoose-fuzzy-searching": "^2.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.7.8",
"qrcode": "^1.5.1",
"qs": "^6.11.0",
"slugify": "^1.6.5",
"speakeasy": "^2.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2"
}
}