-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1003 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
{
"name": "personal-budget-expressjs",
"version": "1.0.0",
"description": "Production-ready Envelope Budgeting API with PostgreSQL, Sequelize ORM, Swagger docs, and a vanilla frontend client",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"test": "NODE_ENV=test node --test tests/api.test.js",
"migrate": "NODE_ENV=production node -e \"require('./models').initDatabase().then(() => process.exit(0)).catch(e => { console.error(e); process.exit(1); })\""
},
"keywords": [
"budget",
"envelope-budgeting",
"express",
"rest-api"
],
"author": "",
"license": "MIT",
"devDependencies": {
"supertest": "^7.1.0"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^4.21.0",
"helmet": "^8.2.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.22.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.8",
"swagger-ui-express": "^5.0.1"
}
}