-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 769 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
{
"name": "Blueprint",
"version": "1.0.0",
"description": "REST API Blueprint",
"main": "index.js",
"scripts": {
"start": "tsc && nodemon dist/app.js",
"dev": "tsc && nodemon app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Juan Sebastian B.",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.17",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"mysql2": "^3.11.4",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/mysql": "^2.15.26",
"@types/node": "^22.9.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2"
}
}