-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "team-up.backend-api",
"version": "3.0.0",
"description": "A simple web application to gather teams for graduation project",
"main": "dist/index.js",
"scripts": {
"start": "npm run serve",
"serve": "node -r dotenv/config -r source-map-support/register dist",
"dev": "ts-node-dev -r dotenv/config -r source-map-support/register ./src/index.ts",
"build": "tsc",
"lint": "biome ci .",
"test": "MONGOMS_VERSION=7.0.0 NODE_ENV=test mocha --timeout 50000 -r ts-node/register -r dotenv/config ./test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kerolloz/team-up.git"
},
"author": "Kerollos Magdy",
"license": "MIT",
"bugs": {
"url": "https://github.com/kerolloz/team-up/issues"
},
"homepage": "https://github.com/kerolloz/team-up#readme",
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"@typegoose/typegoose": "^12.5.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.13.1",
"mongoose": "~8.4.1",
"morgan": "^1.10.0",
"source-map-support": "^0.5.21",
"typescript": "^5.4.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/chai": "^4.3.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/morgan": "^1.9.9",
"@types/sinon": "^17.0.3",
"mocha": "^10.4.0",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"mongodb-memory-server": "^9.3.0",
"ts-node-dev": "^2.0.0"
},
"trustedDependencies": ["@biomejs/biome", "mongodb-memory-server"]
}