-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.89 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cfb-api",
"version": "5.13.2",
"repository": {
"type": "git",
"url": "https://github.com/CFBD/cfb-api-v2.git"
},
"private": true,
"main": "src/app.ts",
"scripts": {
"build": "tsoa spec-and-routes && tsc --skipLibCheck",
"build:db": "pnpm kysely-codegen --camel-case --out-file=db.d.ts",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"start": "node ./build/src/app.js",
"test": "jest",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ignore-path .gitignore .",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint --ignore-path .gitignore . --fix",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml,ts}\"",
"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=ts --ext=json --ext=md --ext=yaml --ext=yml -ext=js --ext=mdx -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,yaml,yml,ts,tsx,jsx,vue,}\" -c",
"prepare": "husky"
},
"keywords": [
"football",
"college",
"cfb",
"ncaaf",
"data",
"statistics"
],
"author": "BlueSCar",
"license": "MIT",
"dependencies": {
"@sentry/node": "^7.120.3",
"@tsoa/runtime": "^6.6.0",
"axios": "^1.11.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"gaussian": "^1.3.0",
"helmet": "^8.1.0",
"kysely": "^0.28.3",
"pg": "^8.16.3",
"pg-promise": "^11.15.0",
"pg-query-stream": "^4.10.3",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.0",
"tsoa": "^6.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@jest-mock/express": "^2.1.0",
"@jest/globals": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.42",
"@types/body-parser": "^1.19.6",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/gaussian": "^1.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.16",
"@types/passport": "^1.0.16",
"@types/pg": "^8.15.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.2.0",
"dotenv": "^17.2.1",
"eslint": "^9.31.0",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"joi": "^17.13.1",
"kysely-codegen": "^0.18.5",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}