-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "ai-fortune-service",
"version": "1.0.0",
"description": "AIを活用した占いサービスのバックエンドシステム",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e",
"test:external": "jest --testPathPattern=external",
"test:external:claude": "jest --testPathPattern=external/claude-api",
"test:external:payment": "jest --testPathPattern=external/payment-service",
"test:external:email": "jest --testPathPattern=external/email-service",
"test:external:storage": "jest --testPathPattern=external/storage-service",
"test:all": "jest"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"googleapis": "^131.0.0",
"helmet": "^8.0.0",
"jspdf": "^2.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"pdfkit": "^0.14.0",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}