-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "bingusboingus",
"version": "2.0.0",
"description": "Hey look it's Bingus.... or Boingus?? OR BOTH??",
"main": "src/main.ts",
"scripts": {
"deldist": "rimraf dist",
"build": "npm run deldist && tsc -p .",
"start:ts-node": "ts-node src/main.ts",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"build:prod": "docker build --pull --rm -f \"dockerfiles\\Dockerfile.prod\" -t ghcr.io/blvckleg/bingusboingus:latest \".\"",
"build:test": "docker build --pull --rm -f \"dockerfiles\\Dockerfile.test\" -t ghcr.io/blvckleg/bingusboingus:test \".\"",
"test:image": "docker run bingusboingus:test npm run test",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blvckleg/BingusBoingus.git"
},
"author": "Matteo Juen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blvckleg/BingusBoingus/issues"
},
"homepage": "https://github.com/Blvckleg/BingusBoingus/#readme",
"dependencies": {
"@nestjs/cli": "^10.4.5",
"@nestjs/common": "^10.2.10",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.6",
"@nestjs/mongoose": "^10.0.2",
"@nestjs/platform-express": "^10.4.5",
"@nestjs/swagger": "^7.3.1",
"@nestjs/testing": "^10.2.6",
"@types/jest": "^29.5.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"discord-interactions": "^3.4.0",
"discord.js": "^14.15.2",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"jest": "^29.7.0",
"joi": "^17.10.2",
"mongoose": "^8.0.1",
"ngrok": "^5.0.0-beta.2",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/express": "^4.17.17",
"@types/node-cron": "^3.0.11",
"eslint": "^8.57.0",
"globals": "^15.1.0",
"prettier": "3.0.3",
"typescript-eslint": "^7.8.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}