-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 971 Bytes
/
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
{
"name": "random-chat-app",
"version": "1.0.0",
"description": "chat with random strangers",
"type": "commonjs",
"main": "index.js",
"scripts": {
"predev": "cd frontend && npm run build",
"dev": "tsx watch --ignore \"./frontend/**/*\" ./index.ts",
"frontend": "cd frontend && npm run dev",
"prebuild": "cd frontend && npm run build",
"build": "tsc",
"postbuild": "cpy ./frontend/build ./dist",
"start": "node ./dist/index.js"
},
"author": "Yashvardhan Singh (yvs2701)",
"license": "ISC",
"dependencies": {
"express": "^4.19.2",
"geolib": "^3.3.4",
"node-cron": "^3.0.3",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.2.0",
"@types/node-cron": "^3.0.11",
"cpy-cli": "^5.0.0",
"dotenv": "^16.4.5",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
}
}