-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 996 Bytes
/
package.json
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": "hobby-verse",
"version": "1.0.0",
"description": "An app to enable businesses to post and host events for free or for a fee.",
"main": "listen.js",
"scripts": {
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "node ./db/seeds/run_seed.js",
"test": "jest",
"start": "node listen.js",
"seed-prod": "NODE_ENV=production npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OJ423/hobby-verse.git"
},
"author": "Oliver Smith",
"license": "ISC",
"bugs": {
"url": "https://github.com/OJ423/hobby-verse/issues"
},
"homepage": "https://github.com/OJ423/hobby-verse#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs.promises": "^0.1.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.15",
"pg": "^8.12.0"
},
"devDependencies": {
"jest": "^29.7.0",
"pg-format": "^1.0.4",
"supertest": "^7.0.0"
}
}