-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
71
72
73
{
"name": "subsfy",
"version": "1.0.0",
"description": "Seu gerenciador de assinaturas",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"studio": "npx prisma studio",
"migrate": "npx prisma migrate dev",
"test": "jest",
"dev": "nodemon --inspect=5858 -e ts,tsx --exec node -r tsconfig-paths/register -r ts-node/register ./src/infra/main/local.ts",
"build": "npx tsc",
"start": "node dist/infra/main/server.js",
"prepare": "husky install",
"generate": "tsoa spec -c tsoa.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacksonFA/subsfy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JacksonFA/subsfy/issues"
},
"_moduleAliases": {
"@adapter": "dist/adapter",
"@configs": "dist/configs",
"@controllers": "dist/infra/controllers",
"@domain": "dist/domain",
"@infra": "dist/infra",
"@usecase": "dist/domain/usecase",
"@winston": "dist/infra/log/winston.js"
},
"homepage": "https://github.com/JacksonFA/subsfy#readme",
"devDependencies": {
"@swc/core": "^1.2.179",
"@swc/jest": "^0.2.20",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^17.0.31",
"@types/nodemailer": "^6.4.4",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"prisma": "^3.14.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@prisma/client": "^3.15.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"google-auth-library": "^8.0.2",
"module-alias": "^2.2.2",
"nodemailer": "^6.7.5",
"reflect-metadata": "^0.1.13",
"tsoa": "^4.0.0",
"uuidv4": "^6.2.13",
"winston": "^3.7.2",
"yup": "^0.32.11"
}
}