-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "moneykeeper-api",
"version": "1.0.25",
"description": "Backend for MoneyKeeper Web Application",
"main": "dist/index.js",
"scripts": {
"generate": "npx prisma generate",
"build": "npx tsc",
"start": "node dist/src/Server.js",
"bun": "bun nodemon src/Server.ts --inspect=8081",
"dev": "npx nodemon src/Server.ts --inspect=8081",
"deploy": "npm version patch && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorbrex/MoneyKeeper-API.git"
},
"keywords": [
"moneykeeper",
"money",
"keeper",
"backend",
"typescript",
"prisma",
"mongodb",
"fastify",
"api",
"rest",
"restful",
"rest-api",
"restful-api"
],
"author": "Sorbrex",
"license": "MIT",
"bugs": {
"url": "https://github.com/sorbrex/MoneyKeeper-API/issues"
},
"homepage": "https://github.com/sorbrex/MoneyKeeper-API#readme",
"dependencies": {
"@fastify/multipart": "^8.0.0",
"@fastify/static": "^6.10.2",
"@google-cloud/storage": "^7.7.0",
"@prisma/client": "^5.7.1",
"crypto-js": "^4.1.1",
"fastify": "4.10.2",
"fastify-plugin": "^4.3.0",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.8.0"
},
"devDependencies": {
"@fastify/cors": "^8.2.0",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6",
"nodemon": "^3.0.1",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"typescript": "^4.9.3"
}
}