forked from MixMatch-Inc/Discoverly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.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
{
"name": "mixmatch-backend",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"dev": "nodemon",
"start": "npx tsc && node build/index.js",
"build": "rm -rf build/ && tsc",
"seed": "ts-node src/scripts/seed.ts",
"payment-seed": "ts-node src/scripts/paymentTestSeed.ts",
"test:payment": "jest tests/payment/payment.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MixMatch-Inc/MixMatch-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/MixMatch-Inc/MixMatch-Backend/issues"
},
"homepage": "https://github.com/MixMatch-Inc/MixMatch-Backend#readme",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"ioredis": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.15.0",
"mongoose": "^8.13.0",
"nodemailer": "^6.10.0",
"passport": "^0.7.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"supertest": "^7.1.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.13.11",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/winston": "^2.4.4",
"autocannon": "^8.0.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.9",
"supertest": "^7.1.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}