-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.86 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.86 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
{
"name": "building-cost-api",
"version": "1.0.0",
"description": "ConstructDataAPI: Your go-to source for construction data. Access material prices, worker rates, and performance metrics for informed decision-making and project optimization. Ideal for developers, contractors, and project managers in the construction industry. ``` |- src | |- api | | |- controllers | | | |- materialController.ts | | | |- laborController.ts | | | |- equipmentController.ts | | | |- performanceController.ts | | |- models | | | |- materialModel.ts | | | |- laborModel.ts | | | |- equipmentModel.ts | | | |- performanceModel.ts | | |- routes | | | |- materialRoutes.ts | | | |- laborRoutes.ts | | | |- equipmentRoutes.ts | | | |- performanceRoutes.ts | | |- services | | | |- materialService.ts | | | |- laborService.ts | | | |- equipmentService.ts | | | |- performanceService.ts | | |- utils | | | |- validation.ts | |- config | | |- database.ts | | |- routes.ts | | |- server.ts | |- tests | | |- material.test.ts | | |- labor.test.ts | | |- equipment.test.ts | | |- performance.test.ts | |- app.ts |- .gitignore |- README.md |- package.json |- tsconfig.json ```",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.test.ts",
"dev": "ts-node src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"mongoose": "^7.2.2",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
}
}