-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.98 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.98 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": "nutrihelp-api",
"version": "1.0.0",
"description": "NutriHelp API with BLOCKING CI/CD Pipeline",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "mocha ./test/**/*.test.js --timeout 5000 --exit --ignore ./test/contractTests/**",
"test:unit": "mocha ./test/unit/**/*.test.js --timeout 5000 --exit",
"test:contract": "jest ./test/contractTests/ --testTimeout=10000 --forceExit",
"lint": "eslint . --ext .js --max-warnings=0",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\"",
"openapi:validate": "swagger-cli validate index.yaml",
"openapi:bundle": "swagger-cli bundle index.yaml -o openapi-bundled.yaml",
"security:audit": "npm audit --audit-level=moderate",
"build": "node -c server.js",
"validate": "npm run lint && npm run format:check && npm test && npm run openapi:validate && npm run security:audit"
},
"devDependencies": {
"chai": "6.0.1",
"eslint": "8.57.0",
"jest": "^29.7.0",
"mocha": "11.7.2",
"nyc": "15.1.0",
"prettier": "3.2.5",
"proxyquire": "^2.1.3",
"supertest": "7.1.4",
"swagger-cli": "4.0.4"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@sendgrid/mail": "8.1.3",
"@supabase/supabase-js": "2.86.0",
"base64-arraybuffer": "^1.0.2",
"bcrypt": "5.1.1",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"crypto": "1.0.1",
"dotenv": "16.6.1",
"express": "4.19.1",
"express-rate-limit": "7.5.0",
"express-validator": "7.2.1",
"fs-extra": "11.3.1",
"groq-sdk": "^1.1.2",
"helmet": "8.1.0",
"jsonwebtoken": "9.0.2",
"multer": "1.4.5-lts.1",
"mysql2": "3.9.2",
"node-fetch": "3.3.2",
"nodemailer": "8.0.2",
"prom-client": "^15.1.3",
"sinon": "18.0.0",
"swagger-ui-express": "5.0.0",
"twilio": "5.9.0",
"winston": "^3.11.0",
"yamljs": "0.3.0"
}
}