-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 742 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 742 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
{
"name": "transactions-workshop",
"version": "1.0.0",
"description": "A workshop project on database transactions using Node.js, PostgreSQL, and Express.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Farah202324/Transactions-workshop.git"
},
"author": "Farah Halimi",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"jest": "^29.5.0",
"pg": "^8.10.0"
},
"devDependencies": {
"dotenv": "^16.0.3"
},
"bugs": {
"url": "https://github.com/Farah202324/Transactions-workshop/issues"
},
"homepage": "https://github.com/Farah202324/Transactions-workshop#readme"
}