-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
{
"name": "barter-trading-system",
"version": "1.0.0",
"description": "A modern web application for barter trading",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:integration": "jest tests/integration --runInBand",
"test:e2e": "cypress run",
"cypress:open": "cypress open",
"lint": "eslint .",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --runInBand",
"test:report": "jest --testResultsProcessor=jest-junit --runInBand"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.3",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.0",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mongodb": "^6.16.0",
"mongoose": "^8.2.0",
"multer": "^2.0.0",
"newrelic": "^12.20.0",
"nodemailer": "^6.9.12",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"puppeteer": "^24.9.0",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"cypress": "^13.6.6",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"mongodb-memory-server": "^9.1.6",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
},
"engines": {
"node": ">=14.0.0"
},
"author": "",
"license": "MIT",
"mongodbMemoryServer": {
"version": "8.0.6"
}
}