-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.97 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
{
"name": "SplitDeal",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test-backend": "cross-env NODE_ENV=backend-test mocha",
"test-backend:unit": "cross-env NODE_ENV=backend-test mocha --timeout 5000 backend-test/unit/**/*.test.js",
"test-backend:e2e": "cross-env NODE_ENV=backend-test mocha backend-test/e2e/**/*.test.js",
"test-backend:watch": "cross-env NODE_ENV=backend-test mocha --watch",
"coverage-backend": "cross-env NODE_ENV=backend-test nyc --reporter=html --reporter=text mocha",
"coverage-backend:unit": "cross-env NODE_ENV=backend-test nyc --reporter=html --reporter=text mocha backend-test/unit/**/*.test.js",
"coverage-backend:e2e": "cross-env NODE_ENV=backend-test nyc --reporter=html --reporter=text mocha backend-test/e2e/**/*.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"chai": "^4.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"google-auth-library": "^9.15.1",
"googleapis": "^149.0.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.14.2",
"mongodb-memory-server": "^10.1.4",
"mongoose": "^8.12.1",
"morgan": "^1.10.0",
"node-cron": "^4.0.7",
"nodemailer": "^7.0.3",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"chai-as-promised": "^7.1.1",
"chrome-location": "^1.2.1",
"cross-env": "^7.0.3",
"cypress": "^14.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mocha": "^11.4.0",
"nodemon": "^3.1.9",
"nyc": "^17.1.0",
"sinon": "^20.0.0",
"sinon-chai": "^3.7.0",
"supertest": "^7.1.1"
},
"jest": {
"testEnvironment": "jsdom"
}
}