-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "vodka-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"generate-keys": "ssh-keygen -t rsa -b 4096 -m PEM -f keys/vodka.key && openssl rsa -in keys/vodka.key -pubout -outform PEM -out keys/vodka.key.pub && echo 'Vodka keys generated!'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.7",
"@types/nodemailer": "^6.4.9",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@fastify/cookie": "^9.0.4",
"@fastify/cors": "^8.3.0",
"dotenv": "^16.3.1",
"fastify": "^4.22.0",
"fluent-json-schema": "^4.1.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.4",
"redis": "^4.6.8",
"uuid": "^9.0.0"
}
}