forked from ThatsMyMute/Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.9 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
{
"name": "clippy-server",
"version": "1.0.0",
"description": "First version of clippys backend",
"main": "src/app.ts",
"scripts": {
"build": "tsc --build",
"start": "node build/app",
"dev": "nodemon --exec ts-node --files src/app.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix"
},
"author": "clippy",
"devDependencies": {
"@types/node": "^14.11.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-google": "^0.14.0",
"gts": "^3.1.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@typegoose/typegoose": "^7.4.2",
"@types/archiver": "^5.1.0",
"@types/aws-sdk": "^2.7.0",
"@types/bad-words": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/is-valid-domain": "0.0.0",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.1",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.4",
"@types/multer-s3": "^2.7.8",
"@types/nodemailer": "^6.4.0",
"archiver": "^5.1.0",
"argon2": "^0.27.1",
"aws-sdk": "^2.799.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"getipintel": "^1.0.4",
"gts": "^3.1.0",
"helmet": "^4.4.1",
"is-valid-domain": "0.0.17",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.18",
"ms": "^2.1.3",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.4.16",
"nodemailer-smtp-transport": "^2.7.4",
"path": "^0.12.7",
"proxycheck-node.js": "^2.0.0-a",
"querystring": "^0.2.0",
"safe-browse-url-lookup": "^0.1.1",
"stream": "0.0.2",
"uuid": "^8.3.1"
}
}