-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 KB
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
{
"name": "pesapi",
"version": "1.0.0",
"description": "A GraphQL Pro Evolution Soccer 6 API",
"main": "src/index.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"build:clean": "tsc --build --clean tsconfig.json",
"build:watch": "tsc --build --watch tsconfig.json",
"check:lint": "eslint .",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset",
"fix:format": "prisma format && prettier \"./**/*.js\" \"./**/*.json\" \"./**/*.mjs\" \"./**/*.ts\" --write --config .prettierrc",
"fix:lint": "eslint --fix .",
"start": "ts-node src/index.ts",
"start:dev": "NODE_ENV=development nodemon src/index.ts",
"start:prod": "NODE_ENV=production node build/index.js"
},
"keywords": [
"api",
"graphql",
"typescript",
"pes",
"ps2",
"pro-evolution-soccer",
"football-api"
],
"author": {
"name": "Antonio Granaldi",
"email": "tonio.granaldi@gmail.com"
},
"license": "CC0-1.0",
"dependencies": {
"@apollo/server": "^4.11.3",
"@as-integrations/fastify": "^2.1.1",
"@fastify/middie": "^8.3.3",
"@fastify/static": "^7.0.4",
"@prisma/client": "^5.22.0",
"dotenv": "^16.4.7",
"fastify": "^4.29.0",
"gm": "^1.25.0",
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.0",
"morgan": "^1.10.0",
"mysql2": "^3.12.0",
"node-emoji": "^2.2.0",
"reflect-metadata": "^0.2.2",
"split": "^1.0.1",
"type-graphql": "^2.0.0-rc.2",
"typegraphql-prisma": "^0.28.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/gm": "^1.25.4",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.7",
"@types/split": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}