-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 983 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 983 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
38
{
"name": "petition2dc",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node --watch src/server.js",
"start": "node src/server.js",
"lint": "eslint .",
"hash:password": "node scripts/hash-password.mjs",
"import:officials": "node scripts/import-officials.mjs"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"connect-sqlite3": "^0.9.16",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.22.1",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.1",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"nanoid": "^5.0.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"prettier": "^3.3.3",
"yaml": "^2.4.2"
}
}