-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.45 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
{
"name": "main",
"version": "1.0.0",
"description": "A place to hang out and chat with your friends.",
"main": "index.js",
"scripts": {
"update": "npm update && npm update -D",
"build": "rm -rf build && tsc && echo Build Finished",
"start:dev": "npm run build && DEBUG=ioredis:* node index.js",
"start": "node index.js",
"check-circular": "dpdm --tree=false --circular=true --warning=false -T .",
"script:setup-db": "ts-node scripts/setup-db.ts",
"script:gen-auth-token": "ts-node scripts/gen-auth-token.ts",
"script:test-rate-limits": "ts-node scripts/test-rate-limits.ts",
"script:test-avatars": "ts-node scripts/test-avatars.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CampFyreCo/Main.git"
},
"author": "Donovan_DMC",
"license": "MIT",
"bugs": {
"url": "https://github.com/CampFyreCo/Main/issues"
},
"homepage": "https://github.com/CampFyreCo/Main#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/deasync": "^0.1.1",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/express-session": "^1.17.3",
"@types/fs-extra": "^9.0.8",
"@types/identicon.js": "^2.3.0",
"@types/imagemagick": "^0.0.30",
"@types/ioredis": "^4.22.0",
"@types/mongodb": "^3.6.9",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.5.8",
"@types/nodemailer": "^6.4.0",
"@types/on-finished": "^2.3.1",
"@types/qrcode": "^1.4.0",
"@types/rate-limit-redis": "^1.7.1",
"@types/speakeasy": "^2.0.5",
"@types/ua-parser-js": "^0.7.35",
"@uwu-codes/eslint-config": "^1.0.5",
"@uwu-codes/tsconfig": "^1.0.1",
"dpdm": "^3.6.0",
"leeks.js": "^0.1.1",
"node-2fa": "^2.0.1"
},
"dependencies": {
"@uwu-codes/utils": "^1.0.17",
"bcrypt": "^5.0.1",
"deasync": "^0.1.21",
"eris": "^0.14.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"file-type": "^16.3.0",
"fs-extra": "^9.1.0",
"gif-frames": "^1.0.1",
"gifsicle": "^5.2.0",
"identicon.js": "^2.3.3",
"imagemagick": "^0.1.3",
"ioredis": "^4.23.0",
"mongodb": "^3.6.4",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.5.0",
"on-finished": "^2.3.0",
"pug": "^3.0.2",
"qrcode": "^1.4.4",
"rate-limiter-flexible": "^2.2.1",
"source-map-support": "^0.5.19",
"speakeasy": "^2.0.0",
"ua-parser-js": "^0.7.24"
}
}