-
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) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 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": "reservation-system-api",
"version": "1.0.0",
"description": "An API for booking an event. A single user cannot book twice for the same event.",
"main": "server.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_ENV=test jest --runInBand"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.setup.cjs"
],
"testEnvironment": "node",
"transform": {
"^.+\\.m?js$": "babel-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.1.0",
"pg": "^8.16.3"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"babel-jest": "^30.2.0",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"supertest": "^7.1.4"
}
}