treterter commited on
Commit
31f6d94
1 Parent(s): f137aaa

Update package.json

Browse files
Files changed (1) hide show
  1. package.json +24 -1
package.json CHANGED
@@ -1,5 +1,28 @@
1
  {
 
 
 
 
 
2
  "scripts": {
3
- "start": "node src/app.ts"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
  }
 
1
  {
2
+ "name": "chat",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "type": "module",
6
+ "main": "app.js",
7
  "scripts": {
8
+ "start": "tsc && node dist/app.js",
9
+ "watch": "tsc-watch --onSuccess \"node dist/app.js\"",
10
+ "build": "tsc"
11
+ },
12
+ "author": "Pawan Osman",
13
+ "license": "AGPL-3.0",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com"
17
+ },
18
+ "dependencies": {
19
+ "axios": "^1.6.7",
20
+ "body-parser": "^1.20.2",
21
+ "express": "^4.18.3"
22
+ },
23
+ "devDependencies": {
24
+ "@types/express": "^4.17.21",
25
+ "ts-node": "^10.9.2",
26
+ "typescript": "^5.3.3"
27
  }
28
  }