-
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.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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-recipe-app",
"version": "1.0.0",
"description": "AI-powered recipe application with dietary restrictions and nutritional analysis",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "dist/server/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/server/app.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"axios": "^1.6.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"morgan": "^1.10.0",
"openai": "^4.20.1",
"sqlite3": "^5.1.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.4",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}