-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "viltima-api",
"version": "1.5.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"fmt": "npx prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@pdftron/pdfnet-node": "^9.2.0-1",
"@sentry/node": "^7.4.1",
"@sentry/tracing": "^7.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"config": "^3.3.7",
"cors": "^2.8.5",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-openapi-validator": "^4.13.8",
"express-rate-limit": "^6.4.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongodb": "^4.7.0",
"mongoose": "^6.4.2",
"morgan": "^1.10.0",
"nodemailer": "^6.7.6",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.1",
"swagger-routes-express": "^3.3.1",
"swagger-ui-express": "^4.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"colors": "^1.4.0",
"concurrently": "^7.2.2",
"copyfiles": "^2.4.1",
"cross-fetch": "^3.1.5",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.18",
"prettier": "2.7.1",
"typescript": "^4.7.4"
}
}