forked from BatShu/batshu-backend
-
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) · 714 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 714 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": "batshu",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "app.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/app.js",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -w\" \"nodemon dist/app.js\" "
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.6.0",
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"typescript": "^5.2.2"
}
}