-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 723 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 723 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
{
"name": "node-starter",
"private": true,
"scripts": {
"tsc": "tsc",
"dev": "nodemon server/index.ts --exec ts-node-dev --respawn",
"start": "node server/index.js"
},
"dependencies": {
"@types/morgan": "^1.9.9",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"http": "^0.0.1-security",
"morgan": "^1.10.0",
"mysql2": "^3.9.2",
"reflect-metadata": "^0.2.1",
"socket.io": "^4.7.4",
"typeorm": "^0.3.20",
"typeorm-extension": "^3.5.0",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"@types/uuid": "^9.0.8",
"nodemon": "^3.1.0",
"ts-node-dev": "^2.0.0"
}
}