-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "core",
"version": "1.0.0",
"description": " tbd",
"main": "app/config/index.ts",
"scripts": {
"start": "ts-node app/config/index.ts",
"dev": "nodemon app/infrastructure/api/index.ts",
"cron": "nodemon app/infrastructure/workers/index.ts",
"deploy-discord-commands": "ts-node app/infrastructure/discord/scripts/deploy-commands.ts",
"discord-bot": "nodemon app/infrastructure/discord/index.ts",
"build": "tsc",
"lint": "eslint --fix app test",
"test": "jest",
"typecheck": "tsc --noEmit",
"check": "prettier --check '**/*.{css,scss,html,ts,tsx}'",
"format": "prettier --write '**/*.{css,scss,html,ts,tsx}'"
},
"prisma": {
"schema": "app/infrastructure/db/schema.prisma",
"seed": "ts-node app/infrastructure/db/seed.ts"
},
"keywords": [],
"author": "Carleton Computer Science Society",
"repository": {
"type": "git",
"url": "https://github.com/CarletonComputerScienceSociety/hack-the-tunnels-starter.git"
},
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.1.1",
"bcrypt": "^5.1.1",
"bullmq": "^5.1.5",
"cors": "^2.8.5",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"ts-results": "^3.3.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"nodemon": "^2.0.22",
"prettier": "3.0.2",
"prisma": "^5.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "<5.1.0"
}
}