-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.17 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.17 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
{
"name": "open-permit",
"version": "2.0.0",
"description": "AI-powered civic intelligence platform for permit monitoring, impact analysis, and citizen advocacy.",
"main": "server.js",
"scripts": {
"dev": "NODE_ENV=development node --max-old-space-size=512 server.js",
"server": "node --max-old-space-size=512 backend/server.js",
"frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"validate:sources": "npm --prefix backend run validate:sources",
"validate:sources:all": "npm --prefix backend run validate:sources:all",
"sync:sources": "npm --prefix backend run sync:sources",
"sync:sources:all": "npm --prefix backend run sync:sources:all",
"postinstall": "npm install --prefix backend && npm install --prefix frontend",
"start": "NODE_ENV=production node --max-old-space-size=512 server.js"
},
"keywords": [
"civic-intelligence",
"permit-monitoring",
"ai",
"legal",
"environmental",
"activism"
],
"author": "Open Permit Team",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"next": "^14.2.35"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}