-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "finance-api",
"version": "1.0.0",
"license": "MIT",
"main": "src/main/server.ts",
"scripts": {
"build": "yarn clean && yarn prisma generate && yarn prisma migrate deploy && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"dev": "ts-node-dev src/main/server.ts",
"lint": "yarn eslint --max-warnings=0 --fix src && yarn prettier --write src",
"prepare": "husky install",
"start": "node dist/main/server.js"
},
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"@apollo/server": "^4.7.5",
"@as-integrations/fastify": "^2.0.0",
"@fastify/cors": "^8.3.0",
"@prisma/client": "^5.2.0",
"bcryptjs": "^2.4.3",
"dataloader": "^2.2.2",
"date-fns": "^3.0.6",
"dotenv": "^16.3.1",
"fastify": "^4.19.2",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.4",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.2.1",
"type-graphql": "^2.0.0-beta.3",
"typedi": "^0.10.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^20.4.1",
"@types/node-cron": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^5.0.1",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.0.0",
"prisma": "^5.2.0",
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"prisma": {
"schema": "src/infra/database/postgresql/prisma/schema.prisma"
}
}