forked from SSathishkumar007/civic-ai-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 967 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 967 Bytes
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
{
"name": "ai-civic-service-assistant",
"version": "1.0.0",
"description": "AI-powered civic service assistant for community access to government information",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"lint": "eslint src/",
"db:init": "node src/scripts/initializeDatabase.js",
"db:setup": "npm run db:init"
},
"keywords": ["ai", "civic", "government", "assistant", "accessibility"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"dotenv": "^16.3.1",
"morgan": "^1.10.0",
"compression": "^1.7.4",
"express-rate-limit": "^7.1.5",
"sqlite3": "^5.1.6",
"sequelize": "^6.35.2"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"eslint": "^8.55.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}