-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
69
70
71
72
73
{
"name": "nexus-support-system",
"version": "1.0.0",
"description": "NEXUS - GitHub-compatible support ticket system with MongoDB",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"test:e2e": "jest test/e2e",
"test:performance": "jest test/performance",
"test:security": "jest test/security",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:runner": "node test-runner.js",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:full": "npm run test:all && npm run test:performance && npm run test:security",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:report": "jest --coverage && open coverage/lcov-report/index.html",
"test:clean": "jest --clearCache && rm -rf coverage"
},
"keywords": [
"nexus",
"github",
"support",
"tickets",
"mongodb"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"newrelic": "^11.0.0",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.7",
"prom-client": "^15.0.0",
"response-time": "^2.3.2",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"twilio": "^6.0.2",
"validator": "^13.11.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@jest/globals": "^29.5.0",
"@types/jest": "^30.0.0",
"artillery": "^2.0.0",
"babel-jest": "^30.4.1",
"faker": "^6.6.6",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"mongodb-memory-server": "^8.13.0",
"nock": "^13.3.1",
"nodemon": "^3.0.2",
"sinon": "^15.2.0",
"supertest": "^6.3.3"
}
}