-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.56 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "thesports-api-backend",
"version": "1.0.0",
"main": "dist/server.js",
"description": "An API to provide sports data from thesports.com",
"repository": {
"type": "git",
"url": "https://github.com/Asad13/example.git",
"ssh": "git@github.com:Asad13/example.git"
},
"author": {
"name": "Asad Mujumder",
"email": "asaduzzaman.anik.me@gmail.com",
"url": "https://asad13.github.io"
},
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"build": "tspc -p tsconfig.build.json",
"lint": "eslint ./src --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write --ignore-unknown",
"prepare": "husky install",
"sleep": "node -e \"setTimeout(() => process.exit(0), 10000)\"",
"redis:remove": "docker compose rm redis -s -f -v",
"redis:start": "docker compose up redis -d",
"redis:restart": "yarn run redis:remove && yarn run redis:start"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
},
"keywords": [
"thesports.com",
"api",
"node",
"express",
"typescript"
],
"engines": {
"node": ">=18.17.0"
},
"packageManager": "yarn@1.22.19",
"dependencies": {
"axios": "^1.4.0",
"compression": "^1.7.4",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"lodash": "^4.17.21",
"mongoose": "^7.2.3",
"pg": "^8.11.3",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3",
"typeorm": "^0.3.17",
"winston": "^3.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"openapi-types": ">=7",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.1",
"typescript": "5.0.4",
"typescript-transform-paths": "^3.4.6"
}
}