-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
44
45
{
"name": "bank-inner-core",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "npx nodemon server.js",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js",
"db:setup": "node scripts/db/setup_db.js",
"db:seed": "node scripts/db/seed.js",
"db:check": "node scripts/db/check_state.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@simplewebauthn/server": "^13.3.0",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cookieparser": "^0.1.0",
"cors": "^2.8.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"form-data": "^4.0.5",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mailgun.js": "^12.7.0",
"morgan": "^1.10.1",
"node-cron": "^4.2.1",
"ua-parser-js": "^2.0.9",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"zod": "^4.3.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}