generated from theomaro/express-mysql-api-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 KB
/
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
39
40
41
42
{
"name": "blog-restful-api",
"version": "1.0.0",
"description": "A backend RESTful API for a blog admin panel build with Node.js, Express.JS and MySQL.",
"main": "dist/app.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "set NODE_ENV=production&& node dist/app.js",
"dev": "set NODE_ENV=development&& nodemon src/app.ts"
},
"keywords": [
"restful api",
"express api",
"MySQL"
],
"author": "theomaro",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.17",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.9.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/hapi__joi": "^17.1.14",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.3",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}