-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
{
"name": "gameday",
"version": "1.0.1",
"author": "Nicholas O'Donnell <[email protected]>",
"license": "SEE LICENSE",
"scripts": {
"build": "nest build",
"db:migrate": "knex migrate:latest",
"db:migrate:make": "knex migrate:make",
"db:rollback": "knex migrate:rollback",
"dev": "nest start --watch",
"lint": "eslint --ext .ts ./src",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/src/main"
},
"dependencies": {
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
"@nestjs/platform-express": "^10.2.4",
"@nestjs/schedule": "^4.1.0",
"@nestjs/terminus": "^10.0.1",
"axios": "^1.6.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"hbs": "^4.2.0",
"knex": "^3.1.0",
"nestjs-pino": "^3.5.0",
"pino-http": "^8.5.1",
"pino-pretty": "^10.3.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/cli": "^10.1.17",
"@nestjs/schematics": "^10.0.2",
"@types/express": "^4.17.17",
"@types/node": "^20.5.9",
"@types/source-map-support": "^0.5.7",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-perfectionist": "^2.2.0",
"eslint-plugin-prettier": "^5.0.0-alpha.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.4.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}