-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 KB
/
package.json
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
{
"name": "ai-content-generator",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"docx": "^9.1.0",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"marked": "^15.0.4",
"mongoose": "^8.9.1",
"natural": "^8.0.1",
"openai": "^4.76.3",
"pdfkit": "^0.15.2",
"sanitize-html": "^2.13.1",
"sentiment": "^5.0.2",
"stopword": "^3.1.3",
"stripe": "^17.4.0",
"text-readability": "^1.1.0"
},
"devDependencies": {
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}