-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "dev-ai-server",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/eugaelgomes/dev-ai-server#readme",
"bugs": {
"url": "https://github.com/eugaelgomes/dev-ai-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugaelgomes/dev-ai-server.git"
},
"license": "ISC",
"author": "Gael Gomes",
"domain": "dev-ai.gaelgomes.dev",
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"start": "dist src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\""
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@perplexity-ai/perplexity_ai": "^0.16.0",
"@vercel/analytics": "^1.5.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"node-cron": "^4.2.1",
"pg": "^8.16.3"
},
"devDependencies": {
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.5.4",
"nodemon": "^3.1.11",
"prettier": "^3.6.2"
}
}